1. samba 的两个进程 nmbd(提供NetBios) 和 smbd (提供文件共享)
注意136、137、138和445端口
2. smb.conf ( 分号;和#号都可注释)
例:
[tools]
comment = share Testing
path = /share/test1
public = yes
writable =yes
3. pdbedit -a -u rhce用户
pdbedit -L
setfacl -m u:student:rwx /share/test/
getsebool -a | grep smb
setsebool -P allow_smbd_anon_write on
samba_create_home.dirs on
samba_enable_home_dirs on
samba_export_all_rw on
chcon -R -t samba_share_t /share/test/ (chcon –reference …)
service smb start
netstat -tulnp |grep smb
smbclient -L //192.168.0.250 -U student
mount -t cifs -o username=student 192.168.0.250:share /mnt/smb/
4. 搭建postfix邮件服务器
5. iptables 的配置