1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

centosでマウントエラー(mount error(13): Permission denied)

Posted at

centosでマウントエラー(mount error(13): Permission denied)

今まで問題なくmountできていたが、何かをきっかけにエラーに。

$ sudo mount -t cifs -o 'username=apuser@example.com ....(以降、略)
mount error(13): Permission denied
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)

今まで、usernameにMicrosotアカウント(メールアドレス)を指定していたが、このドメイン部が、どうもdomain=で指定しなくてはいけなくなったらしい。

修正前

$ sudo mount -t cifs -o 'username=apuser@example.com ....(以降、略)

修正後

$ sudo mount -t cifs -o 'username=apuser,domain=example.com ....(以降、略)
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?