码迷,mamicode.com
首页 > Web开发 > 详细

cifs(common internet file system-通用网络文件系统)

时间:2017-02-16 12:06:33      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:cifs


- server1端操作(客户端)

1)yum install samba-client

2)smbclient -L //ip

3)smbclient //ip/sharename

[guest@server1 root]$ smbclient -L //172.25.254.2

Enter guest‘s password: 

Connection to 172.25.254.2 succes

[guest@server1 root]$ smbclient //ip/sharename

Enter guest‘s password: 

- server2端操作(服务端)

yum install cifs-utils -y

mount //ip/sharename /mountpoint -o username=guest

vim /etc/fstab

//ip/sharename /mountpoint cifsdefaults,username=guest 0 0

mount -a

[root@server2 ~]# mkdir /mountpoint

[root@server2 ~]# mount //172.25.254.2/sharename /mountpoint -o username=guest

Password for guest@//172.25.254.2/sharename:  ******

Unable to find suitable address.

[root@server2 ~]# vim /etc/fstab 

@//172.25.254.2/sharename /mountpoint cifs       defaults,username=guest 0 0@

[root@server2 ~]# mount -a

Password for guest@//172.25.254.2/sharename:  ******

Unable to find suitable address.


本文出自 “元小光” 博客,请务必保留此出处http://yuanxiaoguang.blog.51cto.com/11338250/1898236

cifs(common internet file system-通用网络文件系统)

标签:cifs

原文地址:http://yuanxiaoguang.blog.51cto.com/11338250/1898236

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!