Ubuntu-10.10如何給用戶添加sudo權限

Ubuntu-10.10系統安裝過程當中,系統會提示創建一個默認用戶,好比用戶名爲:chen。
這個默認用戶具備必定的管理功能,便可以經過sudo命令執行root權限的操做。因爲Ubuntu系統不容許經過root用戶登陸系統,因此這個默認用戶便是實際意義上的管理員。
如今的問題是:若是新建一個用戶:zhao,而後要將此用戶設置爲與chen相同的管理員用戶。
此問題有2種方式實現:
1.界面方式。
用chen登陸系統,經過選擇菜單:系統->系統管理->用戶和組,選擇zhao用戶,更改帳戶類型爲:管理員。而後重啓電腦,用zhao用戶登陸便可。
2.命令行方式。
用chen登陸系統,打開終端運行:
sudo gedit /etc/sudoers
修改此配置文件,修改後的/etc/sudoers文件的內容以下,其中最後一行爲添加的zhao用戶:

# /etc/sudoers
#
# This file MUST be edited with the 'visudo' command as root.
#
# See the man page for details on how to write a sudoers file.
#

Defaults    env_reset

# Host alias specification

# User alias specification

# Cmnd alias specification

# User privilege specification
root    ALL=(ALL) ALL

# Allow members of group sudo to execute any command
# (Note that later entries override this, so you might need to move
# it further down)
%sudo ALL=(ALL) ALL
#
#includedir /etc/sudoers.d

# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL
zhao ALL=(ALL) ALL 而後重啓電腦,用zhao用戶登陸便可。
相關文章
相關標籤/搜索