sudo apt-get install samba smbfs
####图形界面
###sudo apt-get install system-config-samba
mkdir /home/flexitime/share
chmod 755 /home/flexitime/share
sudo cp /etc/samba/smb.conf /etc/samba/smb.conf.bak
sudo nano /etc/samba/smb.conf
----------------------------
找到下关键字:
# security = user
替换为:
# by flexitime
security = user
username map = /etc/samba/smbusers
# 在文件最后增加
# by flexitime
###这个是只读的
[iso]
comment = Shared Folder with username and password
path = /stgb
read only = yes
create mask = 0755
directory mask = 0755
###这个是可写的
[stgb]
comment = Shared Folder with username and password
path = /stgb
writeable = yes
read only = no
create mask = 0777
directory mask = 0777
valid users = flexitime
###################
然后顺便把这里改一下,找到[global]把 workgroup = MSHOME 改成
workgroup = WORKGROUP
display charset = UTF-8
unix charset = UTF-8
dos charset = cp936
####################
########
------------------
sudo useradd wuser
sudo smbpasswd -a wuser
// by delete user: sudo smbpasswd -x wuser
sudo nano /etc/samba/smbusers
---------------------
#by flexitime
wuser="windows user"
fleiximte=""
---------------------
sudo testparm
sudo service smbd restart