Linux下mount命令出现Host is down的解决方法

1、

Linux下mount命令出现Host is down的解决方法

https://jingyan.baidu.com/article/cb5d6105cec1a4005c2fe084.html

当使用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=密码,其他选项

解决办法:

通过以下命令来解决Host is down的问题:

# mount -t cifs //10.0.0.1/share /mnt/sharefolder -o username=sensirx,password=sensirx,vers=2.0

原文地址:https://www.cnblogs.com/yaok430/p/14675586.html