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:~$
下面是解決方法:
1)進入超級使用者模式。也就是輸入"su -",系統會讓你輸入超級使用者密碼,輸入密碼後就進入了超級使用者模式。(當然,你也可以直接用root用)
(注意有- ,這和su是不同的,在用命令”su”的時候只是切換到root,但沒有把root的環境變數傳過去,還是當前使用者的環境變數,用”su -”命令將環境變數也一起帶過去,就象和root登入一樣)
2)新增檔案的寫許可權。也就是輸入命令"chmod u+w /etc/sudoers"。
3)編輯/etc/sudoers檔案。也就是輸入命令"gedit /etc/sudoers",進入編輯模式,找到這一 行:"root ALL=(ALL) ALL"在起下面新增"www_linuxidc_com ALL=(ALL) ALL"(這裡的xxx是你的使用者名稱),然後儲存退出。
4)撤銷檔案的寫許可權。也就是輸入命令"chmod u-w /etc/sudoers"。
相關文章
- 解決ubuntu系統“XXX is not in the sudoers file”錯誤Ubuntu
- xxx is not in the sudoers file.This incident will be reported.的解決方法IDE
- linux解決“XXX is not in the sudoers file”錯誤Linux
- oracle is not in the sudoers fileOracle
- Authentication failure 以及xxx is not in the sudoers file 問題的解決辦法AI
- ubuntu sudoers配置錯誤Ubuntu
- Ubuntu下 fatal error: Python.h: No such file or directory 解決方法UbuntuErrorPython
- Fedora 20下解決使用者不在sudoers檔案中的解決方法
- No input file specified 解決方法
- MAC將 /etc/sudoers檔案修改錯後的幾種解決方法Mac
- no input file specified 三種解決方法
- Stale NFS file handle的解決方法NFS
- CentOS 使用 sudo 提示使用者不在sudoers檔案中的解決方法CentOS
- Cannot find SS.INI file for user *** 解決方法
- Ubuntu:make: Nothing to be done for `all' 解決方法Ubuntu
- Docker啟動故障問題 no such file or directory解決方法Docker
- 'libxml/HTMLparser.h' file not found in ASIHTTPRequest 解決方法XMLHTMLHTTP
- contains a file system with errors, check forced解決方法AIError
- No input file specified 出現的原因及解決方法
- ubuntu網路卡啟動錯誤解決方法Ubuntu
- xmanager之linux 解決方法Linux
- ORA-03113: end-of-file on communication channel 解決方法
- The file '/MasterPage.master' does not exist. 類錯誤解決方法AST
- Ubuntu小技巧Ubuntu
- Ubuntu命令技巧Ubuntu
- gitbook no such file or directory 怎麼解決Git
- flume file channel 異常解決
- javaweb中中文亂碼解決方法總結之response和request解決方法JavaWeb
- 記錄 Ubuntu18.04 中文亂碼,解決方法Ubuntu
- 重灌win10之後,雙系統grub消失,ubuntu無法進入,(ubuntu的grub引導損壞)解決方法Win10Ubuntu
- 解決db file sequential read與db file scattered read
- Ubuntu下Eclipse無法新增Tomcat7解決方法UbuntuEclipseTomcat
- Ubuntu終端ssh連線伺服器慢的解決方法Ubuntu伺服器
- Ubuntu & Android 技巧UbuntuAndroid
- Git衝突解決技巧Git
- ORACLE百萬資料匯入匯出解決方法(LOADER、UTL_FILE)Oracle
- Oracle - UTL_FILE包之詳解Oracle
- Linux基礎之CodeMan問題解決與技巧集錦:Linux中“Networking Disabled”問題(解決Ubuntu等OS無法上網)...LinuxUbuntu