作者:狼紳士——梵默修
一、【redhat下配置samba】
1.啟動(dòng)服務(wù)
[root@localhost ~]# /etc/init.d/smb start
[root@localhost ~]# /etc/init.d/nmb start
2.查看服務(wù)啟動(dòng)
[root@localhost ~]# pgrep smbd
5098
5100
[root@localhost ~]# pgrep nmbd
5106
3.復(fù)制配置文件
[root@localhost ~]# cp /etc/samba/smb.conf /etc/samba/smb.conf.bak
4.修改配置文件,設(shè)置共享文件夾
[root@localhost ~]# rm -rf /etc/samba/smb.conf
[root@localhost ~]# vi /etc/samba/smb.conf #修改配置文件
[global]
workgroup = Administrators
netbios name = #這里是windows計(jì)算機(jī)的名字,可以不寫
server string = Linux Samba Server TestServer
security = share
[linuxsir] #====>windows下顯示的共享文件夾名字:linuxsir
path = /tmp #注意:如果共享路徑是/root/share這種有層次的路徑,需要chmod -R 777 root,不能只對share增加讀寫權(quán)限,還需要對root增加
writeable = yes
browseable = yes
guest ok = yes
重啟服務(wù):
[root@localhost ~]# /etc/init.d/smb restart
[root@localhost ~]# /etc/init.d/nmb restart
5.開機(jī)啟動(dòng)samba服務(wù)
[root@localhost DataEngine]# vi /etc/rc.local #修改配置文件,增加啟動(dòng)服務(wù)
/etc/init.d/smb start
/etc/init.d/nmb start
【ubuntu下配置samba】
安裝:
1.apt-get install samba
2.apt-get install smbclient
3.sudo /etc/init.d/smbd start
4.sudo /etc/init.d/nmbd start
5.復(fù)制配置文件
root@robotframework:~# cp /etc/samba/smb.conf /etc/samba/smb.conf.bak
6.修改配置文件,設(shè)置共享文件夾
root@robotframework:~# rm -rf /etc/samba/smb.conf
root@robotframework:~# vim /etc/samba/smb.conf
[global]
workgroup = Administrators
netbios name = #這里是windows計(jì)算機(jī)的名字,可以不寫
server string = Linux Samba Server TestServer
security = share
[linuxsir] #====>windows下顯示的共享文件夾名字:linuxsir
path = /tmp #注意:如果共享路徑是/root/share這種有層次的路徑,需要chmod -R 777 root,不能只對share增加讀寫權(quán)限,還需要對root增加
writeable = yes
browseable = yes
guest ok = yes
public = yes
create mask = 0777
directory mask = 0777
browseable = yes
[RobotTest] #====>windows下顯示的共享文件夾名字:RobotTest
path = /usr/robot/TestProject
writeable = yes
browseable = yes
guest ok = yes
public = yes
create mask = 0777
directory mask = 0777
browseable = yes
7.sudo /etc/init.d/samba restart 重啟SMB服務(wù)
sudo service smbd restart
二.在windows下映射linux的共享目錄
以 RobotTest這個(gè)為例
1.chmod -R 777 /usr/robot/TestProject
2.在windows——》開始的運(yùn)行中輸入——》\\虛擬機(jī)ip,然后回車——》可看到linux的共享目錄RobotTest
3.右擊RobotTest——》在彈出對話框中,選擇“映射網(wǎng)絡(luò)驅(qū)動(dòng)器”——》在映射網(wǎng)絡(luò)驅(qū)動(dòng)器對話框中,
可以看到文件夾路徑為灰色,說明正確(如果此路徑可以修改,說明linux下/usr/robot/TestProject的權(quán)限沒打開),
點(diǎn)擊“完成”——》結(jié)束
三.去除映射網(wǎng)絡(luò)驅(qū)動(dòng)器
1.進(jìn)入我的電腦
2.右擊網(wǎng)絡(luò)位置中RobotTest
3.選擇斷開
http://blog.csdn.net/mengfanbo123/article/details/8524924
轉(zhuǎn)載地址: