个人工具

共享可读写主文件夹(需授权)

来自Ubuntu中文

跳转至: 导航, 搜索

共享可读写主文件夹(需授权)

sudo cp /etc/samba/smb.conf /etc/samba/smb.conf_backup
sudo gedit /etc/samba/smb.conf
  • 搜寻这一行文字
...
; security = user
...
  • 用下面这几行取代
security = user
username map = /etc/samba/smbusers
  • 搜寻这一段文字
...
# By default, the home directories are exported read -only. Change next
# parameter to 'yes' if you want to be able to write to them.
writable = no
...
  • 用下面这几行取代
# By default, the home directories are exported read -only. Change next
# parameter to 'yes' if you want to be able to write to them.
writable = yes
sudo testparm
sudo /etc/init.d/samba restart