首页 > Windows开发 > 详细

把window共享目录挂载到linux服务器上

时间:2017-04-15 21:06:57      阅读:284      评论:0      收藏:0      [点我收藏+]

假设windows的IP为192.168.1.106共享目录为C://Intel,则其共享地址为192.168.1.106/Intel。

挂在方法:

    mount -t cifs //192.168.1.106/intel /mnt -o username=‘jsme‘,password=‘312‘ 

此处username和password都是windows主机的用户名和密码,该方法为root用户使用,挂载后owner和group都为root且挂在后目录不能用chmod修改目录权限


mount -t cifs //192.168.2.26/device /mnt/share -o username=share,password=share,rw,file_mode=0777,dir_mode=0777,setuid=509,setgid=101
其中,uid=509, gid=101是一个普通用户dba /mnt/share权限位是0777,所有用户有完全访问权限


卸载方法:

    umount /mnt

------------------------------------------------------------------------------------------


以上方法立即生效但是在linux主机重启后失效,永久生效方法为


修改/etc/fstab文件,文件最后加入:

//192.168.1.106/Inetl   /mnt cifs  username=‘jsme’,password=‘312’ ,rw  0 0 

 

或在文件/etc/rc.local添加

mount -t cifs //192.168.1.106/intel /mnt -o username=‘jsme‘,password=‘312‘


本文出自 “11977715” 博客,请务必保留此出处http://11987715.blog.51cto.com/11977715/1916290

把window共享目录挂载到linux服务器上

原文:http://11987715.blog.51cto.com/11977715/1916290

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!