个人工具

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

来自Ubuntu中文

Qiii2006讨论 | 贡献2010年5月15日 (六) 02:25的版本 共享可读写主文件夹(需授权)

(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至: 导航, 搜索

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

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