2014-03-10

[Linux] sudo 相關設定

如何允許一般使用者可以有sudo 權限

chmod 770 /etc/sudoers
vi /etc/sudoers
chmod 440 /etc/sudoers

/etc/sudoers 變更中, 可以針對單一User 也可以使用Group 設定

1. 使用一群Group
# Allow members of group sudo to execute any command
%sudo    ALL=(ALL:ALL) ALL

2. 變更單一User
username ALL=(ALL:ALL)  ALL