关于 samba

ubuntu 下安装

apt-get install samba

#apt-get install smbfs

 

smbpasswd -a user1 //添加并给user1设置samba密码

配置文件在 /etc/samb/smb.conf

 

在该文件末尾加入

[share1]

path=/home/test

writable=true

#valid users=user1

 

保存即可

 

mount -t cifs -o username=my_name,password=my_pass //xxx.xxx.xxx.xxx/share_floder /dest

mount -t smbfs -o username=my_name,password=my_pass,codepage=UTF8 //xxx.xxx.xxx.xxx/share_floder /dest (此种挂载方式要制定编码)

 

(待续)

参考资料:http://www.soidc.net/articles/1215485053493/20081025/1215945590785_1.html

http://www.linuxidc.com/Linux/2008-01/10763.htm

http://linux.vbird.org/linux_server/0370samba.php#before 鸟哥的linux私房菜

http://renren4.iteye.com/blog/492156

你可能感兴趣的:(PHP,.net,linux,ubuntu,Blog)