2
2

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でユーザーにsudo権限を付ける

Posted at

環境

Ubuntu 22.04 LTS

状況

Ubuntuサーバーは自宅のADにドメイン参加しています。
ドメインユーザーでUbuntuサーバーにログインは出来ますが、sudo権限がついていません。

Sudo権限を付ける

sudo出来ないユーザーがおらず、rootでログインしている場合

gpasswd -a ユーザ名 sudo

sudo出来るユーザーがいる場合

sudo gpasswd -a ユーザ名 sudo

設定の確認

「/etc/group」ファイルを確認して、sudoグループに対象ユーザーが追加されていることを確認します。

cat /etc/group | grep sudo
2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?