1. 程式人生 > >建立samba伺服器的步驟

建立samba伺服器的步驟

搭建samba伺服器步驟:

0》  首先執行這兩條命令:

iptables -F

setenforce 0

1》  yum inatall samba -y

# rpm -qa|grep samba

2》  vim /etc/samba/smb.conf  在檔案的最後增加:

[company]

comment=share file

path=/company

public=yes

writable=yes

;write list=+staff

 

Security=share   表示其他使用者可以任意訪問

Security=user 此時需設定:

#useradd 使用者名稱

#smbpasswd -a 使用者名稱 #usermod -a /sbin/nologin 使用者名稱

 然後重啟服務:#service smb restart

3》  service smb restart