マウントエラーが発生します(5):
CIFSウィンドウ共有へのマウント時の入出力エラー。
実行されたコマンド:
Sudo /bin/mount -t cifs //server/folder /mnt/folder/ -o username="domain/username",password=password
返されたエラー:
mount error(5):入出力エラーmount.cifs(8)のマニュアルページを参照してください(例:man mount.cifs)
AmsコマンドはRHEL 32で機能しました。
Windows 2012サーバーで共有を設定するとき、私は以下を使用する必要がありました。
Sudo mount.cifs //server/folder /path/to/folder/ -o user=username,password=pass,vers=3.0
vers=3.0
。
以下の提案に基づいて、vers=2.0
。 vers
パラメータがキーです。
私にとっては、NASデバイスから最新のGNU/Linuxデスクトップから共有をマウントしようとしたときに別の問題がありました。Unix拡張機能を無効にするために-o nounix
を指定するとうまくいきました。
結局、私を助けたのは、dmesg
の出力を調べることでした。
[160169.609325] CIFS VFS: Send error in SETFSUnixInfo = -5
[160169.609327] CIFS VFS: Negotiating Unix capabilities with the server failed. Consider mounting with the Unix Extensions disabled if problems are found by specifying the nounix mount option.
[160169.620877] CIFS VFS: Malformed FILE_UNIX_BASIC_INFO response. Unix Extensions can be disabled on mount by specifying the nosfu mount option.
[160169.620888] CIFS VFS: cifs_read_super: get root inode failed
ドメインアカウントがロックアウトされていないことを確認する