0
1

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 1 year has passed since last update.

Ubuntu のグループ操作覚書

Posted at

グループの作成

$ addgroup グループ名

グループにユーザーを追加

$ usermod -a -G グループ名 ユーザー名

グループからユーザーを削除

$ deluser ユーザー名 グループ名
# または
$ gpasswd -d ユーザー名 グループ名

ユーザーの所属しているグループ一覧

$ groups ユーザー名

グループに所属しているユーザー一覧

$ getent group グループ名
0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?