1.首先在安装samba服务组件,以ubuntu为例,:sudo apt-get install samba
2.安装完成后,修改samba的配置文件,增加文件共享,这里表示将/home/share路径下的文件夹共享
[share]
comment=this is Linux share directory
path=/home/share
public=yes
writable=yes
read only=no
create mask=0777
directory mask=0777
3.这样就可以访问了。注意在linux环境下,访问samba共享文件使用smb://协议栈。gui视图下,打开任意文件夹,ctrl+L,在路径输入中输入地址
4.可以直接挂载到文件系统中, :sudo mount -t cifs //192.168.13.1/bo /mnt/bo -o username=xxxx,password=xxxx,iocharset=utf8