Linux系統下給非root用戶添加sudo許可權 有時,在linux系統中非root用戶運行sudo命令,會提示類似信息: xxx is not in the sudoers file. This incident will be reported. 這裡,xxx是當前用戶名,該用戶無法執行sudo ...
Linux系統下給非root用戶添加sudo許可權 有時,在linux系統中非root用戶運行sudo命令,會提示類似信息:
xxx is not in the sudoers file. This incident will be reported.
這裡,xxx是當前用戶名,該用戶無法執行sudo命令,這時候,解決方法如下:
1.進入超級用戶模式。也就是輸入"su -",系統會讓你輸入超級用戶密碼,輸入密碼後就進入了超級用戶模式。(也可以直接用root登錄);
2.給配置文件“/etc/sudoers”添加“寫”許可權。輸入命令:
chmod u+w /etc/sudoers
3.編輯“/etc/sudoers”文件。輸入命令
vim /etc/sudoers
按“i”進入編輯模式,找到這一 行:"root ALL=(ALL) ALL"在起下麵添加"xxx ALL=(ALL) ALL"(這裡的xxx是你的用戶名),然後保存退出;
4.撤銷文件的寫許可權,輸入命令
chmod u-w /etc/sudoers
即可。