web-dev-qa-db-ja.com

マウントエラー(5):マウント時の入出力エラー

マウントエラーが発生します(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で機能しました。

9
Abdul Jaleel

Windows 2012サーバーで共有を設定するとき、私は以下を使用する必要がありました。

Sudo mount.cifs //server/folder /path/to/folder/ -o user=username,password=pass,vers=3.0

vers=3.0

以下の提案に基づいて、vers=2.0versパラメータがキーです。

17
JebaDaHut

私にとっては、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
2
okurz

ドメインアカウントがロックアウトされていないことを確認する

2
Paul