红联Linux门户
Linux帮助

fedora 22 samba使用

发布时间:2015-09-16 09:56:02来源:linux网站作者:elvis1943@126

1、安装前的准备

关闭防火墙    //不关的后果是windows看不到本机

systemctl stop firewalld        //暂时关闭防火墙

systemctl disable firewalld    //开机禁止启动

关闭selinux    //不关的后果是windows没有权限访问本机

setenforce 0        //暂时禁用selinux

编辑 /etc/selinux/config        //永久禁用selinux


2、安装samba

dnf install samba    //服务器

//dnf install samba-client    //客户端和一些管理工具,包含smbpasswd


3、配置samba

编辑 /etc/samba/smb.conf


4、添加用户

# smbpasswd -a USER     //添加USER用户


5、启动samba服务

执行指令:

systemctl start smb.service

systemctl start nmb.service

测试一下 samba 能否打开,如果没有错误提示则证明可以开启。

可以通过指令 systemctl is-enabled smb.service nmb.service 来查看两个服务是否已经开启成功

执行下面的代码,可以让上述两个服务开机自动启动

systemctl enable smb.service nmb.service


Fedora21升级到Fedora22后,Samba(smb.service)无法启动:http://www.linuxdiyf.com/linux/12586.html

如何在Fedora或CentOS上使用Samba共享文件夹:http://www.linuxdiyf.com/linux/12396.html

低版本的linux系统装samba服务器:http://www.linuxdiyf.com/linux/13464.html

Windows和RedHat Linux之间实现资源共享-Samba服务器:http://www.linuxdiyf.com/linux/10604.html