Linux挂载Windows共享目录

时间:2021-12-04 06:24:22

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

Linux挂载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