1
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?

[Ubuntu]ユーザを追加して、sudo権限を付与する方法等

Posted at

要 旨

Ubuntuにおいてユーザを追加して、sudo権限を付与する方法等について記述します。

実施要領等

新規ユーザの追加

sudo adduser USER1

ユーザにsudo権限を付与する。

sudo gpasswd -a USER1 sudo

ユーザの一覧を確認する

cat /etc/passwd

または

getent passwd

不要なユーザを削除する

sudo userdel -r USER2

グループと所属ユーザの一覧を表示する。

cat /etc/group

または

getent group

ユーザが「所属するグループを確認する。

groups USER1

ユーザをあるグループに追加する。

sudo gpasswd -a USER3 NAME_OF_GROUP

結 言

今回は、Ubuntuにおいてユーザを追加して、sudo権限を付与する方法等について記述しました。

1
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
1
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?