Linxu samba服务器的使用方法

# echo "创建samba 账户" 此账户需是本地账户
# smbpasswd -a user1

# echo "重启samba 服务"
# service smb restart

# umount /opt

# mount -t cifs //192.168.2.159/mysamba /opt
# mount -t cifs //192.168.2.159/mysamba /opt -o username=qq

# window下需重启缓存
# net use \\192.168.2.253\IPC$ /delete

 

smbpasswd -a 增加用户(要增加的用户必须以是系统用户)
smbpasswd -d 冻结用户,就是这个用户不能在登录了
smbpasswd -e 恢复用户,解冻用户,让冻结的用户可以在使用
smbpasswd -n 把用户的密码设置成空.
             要在global中写入 null passwords -true
smbpasswd -x 删除用户


 

你可能感兴趣的:(Linxu samba服务器的使用方法)