共计 2884 个字符,预计需要花费 8 分钟才能阅读完成。
搭建 Samba 服务器是为了实现 Linux 共享目录之后,在 Windows 可以直接访问该共享目录。现在介绍如何在红帽 Red Hat 6.5 系统中搭建 Samba 服务。
搭建 Samba 服务之前,yum 源必须配置好,本地源和网络源都可以。
1、关闭 selinux 服务
该服务一定要关闭,不然 Windows 没有访问权限。
临时关闭
只对当前有效,电脑重启之后,该服务又会重新启动,所以一般选择永久关闭。
setenforce 0
永久关闭
打开 selinux 的配置文件
vim /etc/sysconfig/selinux
将 SELINUX 修改为 disabled
重启电脑
reboot
2、安装 Samba 软件
yum install samba* -y
3、修改 Samba 配置文件
打开 /etc/samba/smb.conf
vim /etc/samba/smb.conf
在该配置文件中的 100 行左右,将 security 修改为 share
100
101 security = share
102 passdb backend = tdbsam
在该配置文件的最后添加以下内容
4、关闭防火墙
临时关闭
/etc/init.d/iptables stop
永久关闭
chkconfig iptables off
5、重启 Samba 服务
/etc/init.d/smb restart
开机自启动
chkconfig --level 35 smb on
6、Windows 访问
‘win’ + R 输入 \\ 服务器的 IP 地址
到此,匿名登录的 Samba 服务器就完成了,输入相应的 IP 即可直接访问,不需要登录。
更多详情见请继续阅读下一页的精彩内容:http://www.linuxidc.com/Linux/2017-07/145747p2.htm
1、关闭 selinux 服务
该服务一定要关闭,不然 Windows 没有访问权限。
临时关闭
只对当前有效,电脑重启之后,该服务又会重新启动,所以一般选择永久关闭。
setenforce 0
永久关闭
打开 selinux 的配置文件
vim /etc/sysconfig/selinux
将 SELINUX 修改为 disabled
重启电脑
reboot
2、安装 Samba 软件
yum install samba* -y
3、修改 Samba 配置文件
打开 /etc/samba/smb.conf
vim /etc/samba/smb.conf
在该配置文件中的 100 行左右,将 security 修改为 user
100
101 security = user
102 passdb backend = tdbsam
在该配置文件的最后添加以下内容
4、关闭防火墙
临时关闭
/etc/init.d/iptables stop
永久关闭
chkconfig iptables off
5、重启 Samba 服务
/etc/init.d/smb restart
开机自启动
chkconfig --level 35 smb on
6、添加 Samba 服务器的用户
首先创建一个普通用户
adduser tom
passwd tom
将该用户添加到 Samba 服务列表中
smbpasswd tom
7、Windows 访问
可以查看到有两个共享目录,一个是我们自己设置的那个共享目录。一个是当前登录用户的家目录,家目录是自动共享的,不需要我们设置。
本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-07/145747.htm
搭建 Samba 服务器是为了实现 Linux 共享目录之后,在 Windows 可以直接访问该共享目录。现在介绍如何在红帽 Red Hat 6.5 系统中搭建 Samba 服务。
搭建 Samba 服务之前,yum 源必须配置好,本地源和网络源都可以。
1、关闭 selinux 服务
该服务一定要关闭,不然 Windows 没有访问权限。
临时关闭
只对当前有效,电脑重启之后,该服务又会重新启动,所以一般选择永久关闭。
setenforce 0
永久关闭
打开 selinux 的配置文件
vim /etc/sysconfig/selinux
将 SELINUX 修改为 disabled
重启电脑
reboot
2、安装 Samba 软件
yum install samba* -y
3、修改 Samba 配置文件
打开 /etc/samba/smb.conf
vim /etc/samba/smb.conf
在该配置文件中的 100 行左右,将 security 修改为 share
100
101 security = share
102 passdb backend = tdbsam
在该配置文件的最后添加以下内容
4、关闭防火墙
临时关闭
/etc/init.d/iptables stop
永久关闭
chkconfig iptables off
5、重启 Samba 服务
/etc/init.d/smb restart
开机自启动
chkconfig --level 35 smb on
6、Windows 访问
‘win’ + R 输入 \\ 服务器的 IP 地址
到此,匿名登录的 Samba 服务器就完成了,输入相应的 IP 即可直接访问,不需要登录。
更多详情见请继续阅读下一页的精彩内容:http://www.linuxidc.com/Linux/2017-07/145747p2.htm