引用部分:
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用戶登錄即可。
引用部分結束
注:
注:按這種格式可以修改用戶的權限。在12.XX版本中那個sudoers文件跟這個不一樣,但是加上 username ALL=(ALL)ALL這種也管用。有空研究下這種寫法是怎么回事
