Liunx 共享文件服务器使用的服务器为samba,因此linux共享服务器即为架设samba服务器;
1、需要检查linux是否已安装samba;检查命令为:rpm –qa |grep samba如果没有输出什么信息,表明没有安装,需要到百度下载安装,下载如下:
2、以下可以看到我的linux系统有安装samba,可以进行下一步;
3、建立共享文件夹,命令如下:Mkdir /home/fileshare如下图:
4、如下图,已建立好文件夹;
5、设置好文件夹权限,命令如下:Chmod 755 fileshare
6、建立samba用户;
复制内容到剪贴板
Groupadd fileshare
Useradd –s /sbin/nologin file
Smbpasswd –a file
注意:访问共享的用户必须为samba用户,不能使用其他用户;
7、修改sambe配置文件;命令如下:
Vim /etc/samba/smb.conf
8
修改samba配置文件全局设置;
复制内容到剪贴板
#==============================Global settings===============
[global] workgroup = WORKGROUP server string = Samba Server security = share
9、设置文件夹共享,如下:
[sharefile] path = /home/sharefile public = yes read nly = yes
10、重启smb服务;
Service smb restart
11、Windows 访问共享成功。如下:
12、linux共享服务器完美架设。关于linux命令学习,推荐你看看《linux就该这么学》,具体关于这一章地址3w(dot)linuxprobe/chapter-02(dot)html。
方法/步骤1,检查linux是否已安装samba;
检查命令为:rpm –qa |grep samba
如果没有输出什么信息,表明没有安装,需要到百度下载安装.
2,建立共享文件夹,命令如下:
mkdir /home/fileshare
设置好文件夹权限,命令如下:
Chmod 755 fileshare
建立samba用户;
groupadd fileshare
useradd –s /sbin/nologin file
smbpasswd –a file
注意:访问共享的用户必须为samba用户,不能使用其他用户;
修改sambe配置文件;命令如下:
vim /etc/samba/smb.conf
修改samba配置文件全局设置;
#==============================Global settings===============
[global] workgroup = WORKGROUP server string = Samba Server security = share
设置文件夹共享,如下:
[sharefile] path = /home/sharefile public = yes read only = yes
重启smb服务;
systemctl start smb
这样就可以了
3、安装samba服务[root@localhost /]# yum install samba -y
4、创建共享用户
[root@localhost /]# smbpasswd -a smb
[root@localhost /]# smbpasswd -a smb
5、修改配置文件
[root@localhost /]# vim /etc/samba/smb.conf
workgroup = WORKGROUP//Win需要修改为工作组
server string = Samba Server Version %v
security = user //可以改为everyone
passdb backend = tdbsam
[test]
path = /test
public = yes
writeable = yes
valid users = smb
[share]
path = /share
public = yes
writeable = yes
valid users = smb
6、创建本地共享目录和文件权限
[root@localhost /]# mkdir /test /share
[root@localhost /]# chown -R smb.smb /test/ /share/
[root@localhost test]# touch tp1 tp2
[root@localhost test]# chmod 444 tp1
[root@localhost test]# chmod 666 tp2
[root@localhost test]# echo "111" >/test/tp1//ceshi 文本
[root@localhost test]# echo "222" >/test/tp2
[root@localhost test]# service smb restart//开启服务 测试
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)