概要
特定のアカウントに特権を与える。
wheelグループの設定
パスワード不要の設定
wheelグループはパスワードなしでsudoを実行できるようにする。
以下のコマンドでsudoの設定ファイル:/etc/sudoersファイルを編集する。
visudoで設定変更
sudo visudo
/etc/suduers ・・・visudoコマンドで編集
(中略)
### wheel nopasswd begin
## Allows people in group wheel to run all commands
### comment out
### %wheel ALL=(ALL) ALL
## Same thing without a password
### uncomment
%wheel ALL=(ALL) NOPASSWD: ALL
### wheel nopasswd end
(中略)
(以下の設定で、/usr/local/binを追加する)
#
# Adding HOME to env_keep may enable a user to run unrestricted
# commands via sudo.
#
# Defaults env_keep += "HOME"
Defaults secure_path = /sbin:/bin:/usr/sbin:/usr/bin:/usr/local/bin
次の手順
以上