sudo Setting

1.「sudo」を利用したい一般ユーザを「wheel」グループに所属させます。
# usermod -G wheel ***
※***は、「sudo」を設定したいユーザ名です。

2.「wheel」グループに所属するユーザが「sudo」を利用できるように設定を変更します。
# visudo
## Allows people in group wheel to run all commands
# %wheel ALL=(ALL) ALL

 ↓↓↓
## Allows people in group wheel to run all commands
%wheel ALL=(ALL) ALL

カテゴリーTips