LoginSignup
126
119

More than 5 years have passed since last update.

Linuxコマンドでユーザーのグループ確認・変更。

Posted at

ユーザーが所属しているグループ確認。

# groups tetsuya
tetsuya : tetsuya

ユーザーの所属グループをwheelに変更。

# usermod -G wheel tetsuya
# groups tetsuya
tetsuya : tetsuya wheel

グループwheelには誰が所属しているのか確認。

# getent group wheel
wheel:x:10:tetsuya,hoge_user,foo_user
126
119
1

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
126
119