76
63

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 5 years have passed since last update.

usermodでグループを追加するのは危険

Last updated at Posted at 2015-07-30

usermodでグループを追加するのは危険

Ubuntuを立ち上げて、ユーザーにグループを追加しようと
usermod -G group user
と実行したところ、sudoが効かなくなりました。

原因

usermod -G
は既存のグループを上書きするので、このコマンドでグループを追加する場合は既に追加してあるグループも全て指定しないといけません。(面倒だし危険!)

解決方法

gpasswd -a user group
これで思い通りになりました!

##追記
コメントいただきました。
-aオプションを付与すると、usermodコマンドでも同様の事ができる様です。
gpasswdだと引数の取り方が逆になるのでこちらの方が賢明かもしれません。
usermod -aG group user

76
63
2

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
76
63

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?