标签:linux window linux共享win linux挂载win
1、在Windows上设置一个共享目录
如:将d:\share设置为共享目录
2、在Windows上创建一个用户,如test,密码123456
3、将test用户加入到共享目录d:\share的访问组中,并设定test对该共享目录有完全控制权限(读、写)
4、在Linux下安装samba-client客户端
#yum install samba-client
5、安装cifs-utils软件包
# yum install cifs-utils
6、在Linux下创建一个挂载点
# mkdir /mnt/Windows
7、挂载Windows上的共享目录d:\share到Linux下的/mnt/Windows目录下
# mount -t cifs -o username=test //192.168.1.123/share /mnt/Windows
Enter password: 123456
8、如果挂载成功,则可以进入/mnt/Windows下,新建一个文件,看看Windows上能否看见
9、在/etc/fstab文件中,加入该共享目录的挂载信息
//192.168.1.123/share /mnt/Windows cifs username=test,password=123456 0 0
10、到此为止,Windows上的共享目录//192.168.1.123/share就被成功挂载到了Linux上面了,并且Linux重启后,会自动挂载该目录到/mnt/Windows目录下
本文出自 “行 者--->” 博客,请务必保留此出处http://liumissyou.blog.51cto.com/4828343/1676768
标签:linux window linux共享win linux挂载win
原文地址:http://liumissyou.blog.51cto.com/4828343/1676768