zoukankan      html  css  js  c++  java
  • 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

  • 相关阅读:
    NOIP 转圈游戏
    NOIP 2012 同余方程
    BZOJ3864 Hero meet devil
    HDU3045 Picnic Cows
    「PKUWC2018」随机算法
    CF543E Listening to Music
    CF833E Caramel Clouds
    「PKUWC2018」Slay the Spire
    Luogu2183【国家集训队】礼物
    CF932E Team Work
  • 原文地址:https://www.cnblogs.com/guanghe/p/8185364.html
Copyright © 2011-2022 走看看