mount.cifsで権限拒否エラーが発生します。

mount.cifsで権限拒否エラーが発生します。

Redhat 5.9サーバーの1つにWindows共有をインストールしようとしています。私はこのコマンドを使用します

mount -t cifs //hostIP/Folder /share2 -o username=alpha,password=blahblahblah

And

mount.cifs //hostIP/sales /share2 -o username=alpha,password=blahblahblah,domain=ourdomain.corp

しかし、私が何をしても、常に許可拒否エラーが発生します。

mount error 13 = Permission denied
Refer to the mount.cifs(8) manual page (e.g.man mount.cifs)

ベストアンサー1

そのオプションも試してみてくださいsec=ntlm。このオプションのバージョンによっては、mount.cifsWindows共有をマウントする必要があります。

mount -t cifs //hostIP/Folder /share2 -o sec=ntlm,username=alpha,password=blahblahblah

おすすめ記事