Ubuntu技巧之 is not in the sudoers file解決方法

期待一片自己的藍天發表於2014-06-18
本文介紹了在Ubuntu使用過程中遇到 is not in the sudoers file 時的解決辦法。

用sudo時提示"xxx is not in the sudoers file. This incident will be reported.其中XXX是你的使用者名稱,也就是你的使用者名稱沒有許可權使用sudo,我們只要修改一下/etc/sudoers檔案就行了。

例子:

www_linuxidc_com@linuxidc-Aspire-3680:~$ sudo add-apt-repository ppa:stk/dev
[sudo] password for www_linuxidc_com: 
www_linuxidc_com is not in the sudoers file.  This incident will be reported.
www_linuxidc_com@linuxidc-Aspire-3680:~$ 

Ubuntu技巧之 is not in the sudoers file解決方法

下面是解決方法:

1)進入超級使用者模式。也就是輸入"su -",系統會讓你輸入超級使用者密碼,輸入密碼後就進入了超級使用者模式。(當然,你也可以直接用root用)
(注意有- ,這和su是不同的,在用命令”su”的時候只是切換到root,但沒有把root的環境變數傳過去,還是當前使用者的環境變數,用”su -”命令將環境變數也一起帶過去,就象和root登入一樣)

Ubuntu技巧之 is not in the sudoers file解決方法

2)新增檔案的寫許可權。也就是輸入命令"chmod u+w /etc/sudoers"。
3)編輯/etc/sudoers檔案。也就是輸入命令"gedit /etc/sudoers",進入編輯模式,找到這一 行:"root ALL=(ALL) ALL"在起下面新增"www_linuxidc_com ALL=(ALL) ALL"(這裡的xxx是你的使用者名稱),然後儲存退出。

Ubuntu技巧之 is not in the sudoers file解決方法

4)撤銷檔案的寫許可權。也就是輸入命令"chmod u-w /etc/sudoers"。

linux

相關文章