samba服务器的安装配置

安装samba包
yum install samba
修改samba配置文件
vim /etc/samba/smb.conf
加入下面信息
[root]
             comment=root share
             path = /
             writable=yes
             browseable = yes
             guest ok = yes
             public = yes
             valie users = root
在命令行运行下面命令
smbpasswd -a root (为samba添加用户)
输出密码(samba的密码,可以和root帐号不同)
service iptables stop (关闭防火墙)
chkconfig iptables off (开机不启动防火墙)
chkconfig smb on (开机自动启动samba服务)
vim /etc/selinux/config
把SELINUX=enforcing改为SELINUX=disabled保存

重启电脑就可以了 ,在window系统中,输入linux IP,可看到文件已经共享

你可能感兴趣的:(linux,service,服务器,防火墙,vim,Path)