本文共 662 字,大约阅读时间需要 2 分钟。
当使用Linux中的mount命令挂载一个Windows的共享目录的时候有时会出现:
mount error(112): Host is downRefer to the mount.cifs(8) manual page (e.g. man mount.cifs)出现Host is down的错误在挂载Windows 8,8.1,10的时候会经常出现,这时候其实不是命令本身的原因,但是对于挂载windows共享目录来说仍然给大家提供标准的语法:#mount -t cifs //IP地址/共享名称 挂载点 -o username=用户名,password=密码,其他选项Linux:mount命令出现Host is down如何解决Linux:mount命令出现Host is down如何解决工具/原料
Linuxmount命令远程共享主机,例如: 10.0.0.1远程共享目录名称: share本地挂载点: /mnt/sharefolder方法/步骤1:
通过以下命令来解决Host is down的问题:#mount -t cifs //10.0.0.1/share /mnt/sharefolder -o username=sensirx,password=sensirx,vers=2.0
注意事项这个问题主要在于版本上面,所以在mount cifs的时候显式指定一下挂载的cifs是最新的版本即可转载于:https://blog.51cto.com/14164498/2388470