装完linux系统,发现普通用户无法使用sudo 命令,
提示:xinhuan(普通用户)is not in the sudoers file, This incident will be reported.
大概意思是说xinhuan 这个用户不在sudoers这个文件里,这个事件将要被报告的。
我们可以这样做
[xinhuan@localhost~]$su -
输入超级用户root密码
[xinhuan@localhost~]#chmod u+w /etc/sudoers
[xinhuan@localhost~]#vi /etc/sudoers
找到 root ALL=(ALL)
:wq
[xinhuan@localhost~]#chmod u-w /etc/sudoers