sudoの利用ユーザの設定
筆者の環境はCentOS 5。
/etc/sudoers ファイルを編集する。
編集する際に、専用のコマンド=/usr/bin/visudo を使う。
操作はviと一緒。
# sudoers file. # # This file MUST be edited with the 'visudo' command as root. # # See the sudoers man page for the details on how to write a sudoers file. # # Host alias specification # User alias specification # Cmnd alias specification # Defaults specification # User privilege specification root ALL=(ALL) ALL user1 ALL=(ALL) ALL # Samples # %users ALL=/sbin/mount /cdrom,/sbin/umount /cdrom # %users localhost=/sbin/shutdown -h now
↑のようにすると、user1にsudo権限を付与できる。