2021-05-12 14:32:11
Ubuntu下is not in the sudoers file 問題解決
2020-06-16 17:58:45
在Ubuntu12.04 下,使用sudo apt-get install XXX 時,突然跳出 username is not in the sudoers file的問題
然後我一查此username的型別,果然是標準使用者而不是管理員使用者
解決這個問題至少有兩種方法:
一。System Settings ->User Accounts -> 點選Unlock ->輸入root密碼 -> 修改AccountType(使用者型別)為Administrator(管理員) -> 重新啟動
二。
root使用者下,修改/etc/sudoers的許可權為640(chmod 640 /etc/sudoers) -> vim /etc/sudoers -> 找到root ALL=(ALL:ALL) ALL ->新增
username ALL=(ALL:ALL) ALL -> 修改/etc/sudoers的許可權為440(chmod 440 /etc/sudoers)-> 重新啟動
這時我知道的兩種方法,若有其他方法,請大神留言告之。
相關文章