CeotOS7で新しいアカウントを作成してsudoを許可する

2020年5月7日木曜日

CentOS7

t f B! P L
CentOS7で新しいユーザーアカウントを作成するには、useraddコマンドを利用します。usermod -gで、ユーザーのプライマリグループを指定できます。 以下の例は、namiheiという名前の新しいアカウントを作成し、既存のusersグループを割り当てています。 usermod -gでプライマリグループを指定しない場合、ユーザーアカウントのプライマリグループは、ユーザーアカウントと同じ名前になります。 アカウントのパスワードは、passwdで設定します。
sudoを実行する場合、そのアカウントをusermod -aGでwheelグループに所属させます。

(root権限で)
$useradd namihei
$usermod -g users namihei
$passwd namihei
Changing password for user namihei.
New password: 
Retype new password: 
passwd: all authentication tokens updated successfully.
$usermod -aG wheel namihei
usermod -aG wheel でsudoを設定した後、再ログインするとsudo許可の設定が反映されます。

このブログを検索

QooQ