Linux挂载Windows共享目录

Posted 光何

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux挂载Windows共享目录相关的知识,希望对你有一定的参考价值。

在windows中设置共享目录并添加权限用户

 

把Window系统的文件共享挂载到linux centos 目录下的方法步骤: 

1、先在windows下面共享需要挂载的目录。 
2、确保linux与windows是在同一个局域网当中。 
3、在linux下面创建一个需要挂载到的目录。 
4、利用mount命令进行挂载。

mount -t cifs -o username=test,password=test,uid=weblogic,gid=weblogic //172.216.176.36/test /var/www/html/mount

使用mount命令把Window的目录映射到linux目录下参数说明:

username:是Window系统登录用户名

password:Window系统登录密码

//172.216.176.36/test:设置Window共享目录的路径, ip加共享文件名

/var/www/html/mount:挂载到linux下的那个目录

mount常见错误:

mount error 13 = Permission denied

Refer to the mount.cifs( manual page (e.g.man mount.cifs) 

确定输入的命令与上面mount的写法与上面的一致。

然后检查Window的用户名和密码是否正确。

取消mount的方法:

umount /var/www/html/mount

以上是关于Linux挂载Windows共享目录的主要内容,如果未能解决你的问题,请参考以下文章

Linux 挂载windows 共享目录

Linux挂载Windows共享目录

LInux挂载Windows端共享软件

linux使用mount命令挂载windows共享目录

WIN10旗舰版怎么挂载NFS共享目录

WIN10旗舰版怎么挂载NFS共享目录?