sudo (superuser do)

[ 戻る | トップページに戻る ]

概要

sudo とは、コマンド単位で任意権限での実行権限を付与するためのツール。 ユーザに root 権限は与えたくないけれど、 root 権限が必要なコマンドを実行させたい場合に便利。

URL

http://www.courtesan.com/sudo/

インストール環境

Solaris 2.6

必要なもの

特になし

バージョン

1.6.3p7, 1.6.7p4

インストール手順 (1.6.3p7)

$ tar xvfz sudo-1.6.3p7.tar.gz
$ cd sudo-1.6.3p7
$ ./configure --with-logging --with-ignore-dot --with-tty-tickets --enable-log-host
creating cache ./config.cache
Configuring Sudo version 1.6.3
checking whether to lecture users the first time they run sudo... yes
checking whether sudo should log via syslog or to a file by default... \
         configure: error: must give --with-logging an argument.

おろ? ロギングを syslog と file のどちら (もしくは両方) でやるか指定しないと いけないのね。ではこう。
$ ./configure --with-logging=syslog --with-ignore-dot --with-tty-tickets --enable-log-host
$ make
$ su
# make install
# exit

[ 戻る | トップページに戻る ]