ubuntu samba 配置

安装samba

apt-get install samba

/etc/samba/smb.conf 末尾加上

[share]
comment = Share Folder
path = /home/share/
read only = no
guest ok = yes
writable = yes

修改文件夹权限

chmod -R go+rwx /home/share/

其中:
-R: Recursive,递归模式,修改该文件夹及其下所有文件和文件夹
go: g是Group组,o是Other其他用户
+ : 是添加权限
rwx:r是Read读,w是Write写,x是eXecute执行

重启 samba 服务

/etc/init.d/samba restart

你可能感兴趣的:(ubuntu samba 配置)