一.问题
新安装的虚拟机在用户使用sudo修改文件权限时提示XXX is not in the sudoers file. This incident will be reported.
二.解决
参考:https://blog.csdn.net/danykk/article/details/80137806
1.使用su命令切换到root用户
(这里有的时候会没有设置root账户的密码,需要先使用sudo passwd root来设置账户密码)
2.修改sudoers文件
(1)添加写权限
chmod -v u+w /etc/sudoers(2)修改文件
sudo visudo找到root用户行,在下面添加自己的用户行
(3)撤销写权限
3.测试结果
三.用户切换
1. 切换到root
(1)su (2)sudo su (3)su root
输入root密码完成切换
2. 普通用户间切换
su username
四.chmod命令
参考:https://blog.csdn.net/ichen820/article/details/115524278
标签:XXX,centos,sudoers,sudo,用户,su,权限,root From: https://www.cnblogs.com/Studywith/p/16946106.html