如果木有任何报错信息的话,说明我们的共享正常,这时我们就可以进入我们的挂载目录里面去查看我们的共享文件了。 2.windows访问Linux共享: Linux上的配置: [root@server10 ~]# yum install samba -y [root@server10 ~]# useradd -g root hy [root@server10 ~]# passwd hy 更改用户 hy 的密码 。 新的 密码: 无效的密码: 它基于字典单词 无效的密码: 过于简单 重新输入新的 密码: passwd: 所有的身份验证令牌已经成功更新。 [root@server10 ~]# smbpasswd -a hy New SMB password: Retype new SMB password: [root@server10 ~]# vim /etc/samba/smb.conf //添加如下内容
点击(此处)折叠或打开
[hy]
comment = Public Stuff
path = /opt/hy
public = yes
writable = yes
printable = no
write list = +staff
[root@server10 ~]# testparm //配置完成后我们用这个命令检查是否存在语法错误 Load smb config files from /etc/samba/smb.conf rlimit_max: increasing rlimit_max (1024) to minimum Windows limit (16384) Processing section "[homes]" Processing section "[printers]" Processing section "[hy]" Loaded services file OK. Server role: ROLE_STANDALONE Press enter to see a dump of your service definitions
[global] workgroup = MYGROUP server string = Samba Server Version %v log file = /var/log/samba/log.%m max log size = 50 idmap config * : backend = tdb cups options = raw
[homes] comment = Home Directories read only = No browseable = No
[printers] comment = All Printers path = /var/spool/samba printable = Yes print ok = Yes browseable = No
[hy] comment = Public Stuff path = /opt/hy write list = +staff read only = No guest ok = Yes [root@server10 ~]# mkdir /opt/hy [root@server10 ~]# chmod 777 /opt/hy //这里的权限根据自己需要设定 [root@server10 ~]# /etc/init.d/smb start 这时我们的server端配置完成,接下来我们可以在我们的windows主机上利用ctrl+r,然后输入\\192.168.88.100,这时提示我们输入用户名和密码,输入后我们就可以看到我们想要的结果了。