Installing Samba
Yum Install samba*
Modify Samba Configuration
Vim/etc/samba/smb.conf
#在homes后添加 (explain that the web in the Web is also the name that was later mapped in Win7)
[web]
Path =/data
browseable = yes
writable = yes
Add Samba user SMB and/data (for shared folder names) folder
Useradd-m-s/sbin/nologin SMB
Smbpasswd-a SMB
Mkdir-p/data
#添加好后, restart SMB
Service SMB Restart
Configure the share under Win7
View at this time
Click into the problem at this time, Access denied
1. Whether the permissions are normal
2. Firewall is closed
View Firewall:
Service Iptables Status
To turn off the firewall:
Service Iptables off
Boot does not start firewall:
Chkconfig iptables off
3.selinux is closed (my problem is because SELinux is not closed. If the local tester is established for direct permanent shutdown)
To view the SELinux status:
1,/usr/sbin/sestatus-v # #如果SELinux Status parameter is enabled that is open
SELinux status:enabled
2, Getenforce # #也可以用这个命令检查
1, temporarily shut down (do not restart the machine):
Setenforce 0 # #设置SELinux become permissive mode
# #setenforce 1 set SELinux become enforcing mode
2, modify the configuration file needs to reboot the machine:
modifying/etc/selinux/config files
Change Selinux=enforcing to Selinux=disabled
Reboot the machine.
Add Samba as Boot
Vim/etc/rc.local
Adds a line to the last line
Service SMB Restart
If all is OK, samba is basically complete, easy.