如果木有任何报错信息的话,说明我们的共享正常,这时我们就可以进入我们的挂载目录里面去查看我们的共享文件了。 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,这时提示我们输入用户名和密码,输入后我们就可以看到我们想要的结果了。
阅读(6554) | 评论(0) | 转发(0) |
0
上一篇:
下一篇:
给主人留下些什么吧!~~
评论热议
请登录后评论。
"));
function link(t){
var href= $(t).attr('href');
href ="?url=" encodeuricomponent(location.href);
$(t).attr('href',href);
//setcookie("returnouturl", location.href, 60, "/");
}