samba配置:
ubuntu12.04samba服务器配置
(比较好的文章)
http://www.cnblogs.com/king-77024128/articles/2666298.html
关键步骤:
(1) 安装Ubuntu samba服务器:
sudo apt-get install samba
sudo apt-get
install smbfs
(2) 安装Ubuntu samba图形管理界面
#sudo apt-get install
system-config-samba
(3) 启动samba图形管理界面
#sudo
system-config-samba
或者在搜索程序中搜索到samba程序即可
windows访问共享无法写文件,请在ubuntu下修改共享文件夹访问权限为777
下面我们来共享群组可读写文件夹,假设你要共享的文件夹为:
/root/src
更改读写权限代码:
sudo chmod 777 /root/src
原文:http://www.cnblogs.com/lijunamneg/p/3529810.html