这些天,在公司里电脑部署程序,使用个优盘插来插去,有的电脑还不能识别U盘,想到在服务器上安装个samba文件共享服务器,建立一个文件夹,不设任何权限,自由读写,当作一个在线式的优盘使用,以下是安装过程:

 1.安装samba

sudo apt-get install samba

  2.配置文件

vi /etc/samba/smb.conf
[share]comment=this is Linux share directorypath=/home/service/sharepublic=yeswritable=yes

 在配置文件最下面,粘贴就好,目录要设置好自己的工作目录。

 3.重启一下

service /etc/init.d/samba restart