0
0

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.

【俺得】Linux基本コマンド①

Last updated at Posted at 2019-09-16

自分用の備忘録になります。
今後整理して共有的な面も目指していきます。

#■ユーザー追加する

$useradd USER名

#■存在するユーザー確認する

$cat /etc/passwd 

#■存在するグループ確認する

$cat /etc/group 

#■ユーザーを削除する

$userdell USER名

#■ユーザーへデフォルトグループへ紐付ける

$usermod -g GROUP名 USER名

#■ユーザーへサブグループを追加する(-aにより既存サブグループも保持する)

$usermod -aG GROUP名 USER名

#■グループに所属するユーザを確認する

$getent group GROUP名
0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?