"[用户名] is not in the sudoers file"(已解决)

解决方法:
1.切换到root用户

su -

2.添加文件读写权限

chmod u+w /etc/sudoers

3.打开文件

vim /etc/sudoers

注:如果没有vim,请通过apt-get install vim安装。

4.找到root ALL=(ALL) ALL并在此行下方添加:

[用户名] ALL=(ALL) ALL

5.删除文件读写命令

chmod u-w /etc/sudoers

猜你喜欢

转载自blog.csdn.net/github_38236333/article/details/78232737