- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- UNIX/sudoコマンド へ行く。
- 1 (2012-03-29 (木) 18:13:52)
- 2 (2012-03-29 (木) 18:50:09)
sudoコマンド
sudoers
For example purposes, lets tweak the sudo permissions for apt-get. Now, scroll to the bottom, and we can insert our line:
Code:
%admin ALL=(ALL)NOPASSWD:/usr/bin/apt-get
To break it down:
- %admin - All users of the admin group
- ALL= - from any Host/IP
- (ALL) - can run as any user
- NOPASSWD - with no password required
- :/usr/bin/apt-get - the list of comma, separated, applications.