ページ

2020年1月3日金曜日

CentOS側の共有フォルダのマウント

ちょっと手間取ったので備忘がてら。

これまで使っていたCentOSが6.3と古かったせいか、Ubuntu18.04から共有フォルダにマウントかけようとしたらエラーになりました。

$ sudo mount -t cifs -o username=xxx,password=hogehoge //192.168.20.123/share /mnt/share
mount error(112): Host is down
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)

よく分からない。
で、いろいろ探してたら以下のような情報を発見。
こちらを参考にさせていただきvers=1.0を指定して再度マウントかけたところうまくいきました!

$ sudo mount -t cifs -o vers=1.0,username=xxx,password=hogehoge //192.168.20.123/share /mnt/share
mount error(112): Host is down
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)