每次配置samba都要去網上找找教程,很多時候還找得還很麻煩,所以先粗糙總結記錄下,免得到時候配置有手忙腳亂。
進入/etc/samba/ 先備份乙個smb.conf 清空smb.conf 檔案所有內容,然後編輯。
//全域性設定
[global]
workgroup =workgroup
server string = samba server version %v
netbios name = smbserver
security = user
passdb backend = tdbsam
printcap name = cups
load printers = yes
[os]
comment = this is a directory of linux file.
path = /media/linuxsir
browseable = yes
writable = yes
create mask = 0750
directory mask = 0750
guest ok = yes
關閉防火牆
service iptables stop -暫時關閉防火牆。
chkconfig iptables off -永久關閉防火牆
關閉selinux ,可能會出現不能操作共享資料夾內的東西
setenforce 0
vi /etc/selinux/config
把selinux設定為 :disabled
之後 getsebool -a | grep samba
smpasswd -a username 建立smb 使用者 (否則不能進行訪問)
啟動smbd ,nmbd
windos 下 //配置的samba位址 ip
linux下 smbclient -l 配置的samba位址 ip
註解:[global]
這段是全域性配置,是必段寫的。其中有如下的幾行;
workgroup 就是windows中顯示的工作組;在這裡我設定的是workgroup(用大寫);
netbios name 就是在windows中顯示出來的計算機名;
server string 就是samba伺服器說明,可以自己來定義;這個不是什麼重要的;
security 這是驗證和登入方式,這裡我們用了share ;驗證方式有好多種,這是其中一種;另外一種常用的是user的驗證方式;如果用share呢,就是不用設定使用者和密碼了;
[linuxsir]
這個在windows中顯示出來是共享的目錄;
path = 可以設定要共享的目錄放在**;
writeable 是否可寫,這裡我設定為可寫;
browseable 是否可以瀏覽,可以;可以瀏覽意味著,我們在工作組下能看到共享資料夾。如果您不想顯示出來,那就設定為 browseable=no
create mask 建立共享資料夾的許可權
guest ok 匿名使用者以guest身份是登入;
samba 開通 Samba安裝與配置
四 samba例項 需求 配置 software目錄的共享,允許user1 user2兩個使用者完全訪問 建立目錄 mkdir software 新增使用者 useradd user1 passwd user1 useradd user2 passwd user2 新增samba密碼 pdbedit...
Samba安裝配置
samba smb 用於linux和windows共享檔案的軟體,也可用於linux之間共享檔案 linux之間共享檔案推薦nfs 類似於ftp服務,也類似windows中的共享檔案功能,linux中,通過samba向其它機器提供共享檔案服務,其它機器可將共享掛載在本地機上使用。1.安裝 sudo ...
samba安裝和配置
samba安裝指南 一 本次安裝是在虛擬機器redhat linux enterprise 5下進行的。二 首先用以下命令確認samba未成功安裝 root localhost servicesamba restart 提示unrecognizedservice 或者 root localhost ...