标签:style color os ar 文件 sp art on c
1. 安装samba服务器
sudo apt-get install samba //主程序包
sudo apt-get install smbfs //文件下载挂载工具
2. 创建共享目录
mkdir /home/stephen/share
sodu chmod 777 /home/stephen/share
3. 配置
1) 备份Samba配置文件
sudo cp /etc/samba/smb.conf /etc/samba/smb.conf.bak
2) 配置
- sudo gedit /etc/samba/smb.conf
- 文件末尾添加
[share]
path = /home/stephen/share //share path
available = yes
browsealbe = yes
public = yes
writable = yes
4. 创建Samba账户
sudo touch /etc/samba/smbpasswd
sudo smbpasswd -a stephen //提示输入密码
注:若当前系统没有目标账户可以添加一个, sudo useradd ***
5. 重启Samba服务器
sudo /etc/init.d/samba restart
6. 测试
- smbclient -L //localhost/share
- Windows
标签:style color os ar 文件 sp art on c
原文地址:http://www.cnblogs.com/stephen-init/p/3994056.html