安裝
yum install samba
chkconfig smb on
設定
a. 新增帳號
useradd -n -M -s /sbin/nologin -g nobody -d 家目錄 帳號
smbpasswd -a 帳號
b. 設定 smb.conf
刪掉 /etc/samba/smb.conf 全部內容 ,把下面內容加進去:
<pre class="c" name="code">[global]
dos charset = UTF-8
unix charset = CP950
workgroup = MYGROUP
netbios name = MY_SAMBA # ← 可以把名字改成自己喜歡的名字
server string = Samba Server Version %v
socket options = TCP_NODELAY IPTOS_LOWDELAY SO_RCVBUF=65536 SO_SNDBUF=65536
hosts allow = 10. 192.168. # 預設內網才能用
security = USER
log file = /var/log/samba/log.%m
max log size = 50
load printers = No
printing = bsd
create mask = 0644
directory mask = 0755
dead time = 15
getwd cache = yes
# 想要存取哪個目錄,就加上底下 5 行,更改 [名稱] 跟目錄 (path=)
[SOMEWHERE]
path = /some/where
valid users = # ←允許存取的帳號寫在這裡,多個以逗點隔開
force user = root
read only = No
這樣就可以從 windows 連過去了。
Linux 要連的話,請安裝 samba-client。