Sudo提權出現:xx用戶不在sudoers文件中解決
症狀
終端使用sudo提權出現:
xx用戶不在 sudoers 文件中。此事將被報告。
解決
出現這個問題是sudo的配置文件出錯,修改sudo的配置文件即可解決
使用su 切換到root,然後終端執行:
sudo gedit /etc/sudoers
Defaults env_reset
Defaults mail_badpass
Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
# Host alias specification
# User alias specification
# Cmnd alias specification
# User privilege specification
root ALL=(ALL:ALL) ALL
# Members of the admin group may gain root privileges
�min ALL=(ALL:ALL) ALL
# Allow members of group sudo to execute any command
%sudo ALL=(ALL) ALL
xx ALL=(ALL) ALL (將此處的XX修改為出現改問題的用戶名!)
保存文件退出即可解決