centos 删除文件夹 permission denied, xxx is not in the sudoers file.

前端之家收集整理的这篇文章主要介绍了centos 删除文件夹 permission denied, xxx is not in the sudoers file.前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

centos 删除文件夹 permission denied

用 tar 命令解压出来的文件夹却带了个锁,无法删除

如下图:


使用 rm -rf 删除输出如下:


加 sudo 执行后发现关键信息了:xxx is not in the sudoers file.

解决方法

首先需要切换到root身份
$su -
(注意有 -,这和su是不同的,在用命令"su"的时候只是切换到root,但没有把root的环境变量传过去,还是当前用户的环境变量,用"su -"命令将环境变量也一起带过去,就象和root登录一样)
然后
$visudo//切记,此处没有vi和sudo之间没有空格

1、“:$”移动光标,到最后一行
2、按a,进入append模式
3、输入您的用户名及后面的信息
your_user_name ALL=(ALL) ALL
4、按Esc
5、输入“:wq”(回车,保存文件退出)
这样就把自己加入了sudo组,可以使用sudo命令了。

原文链接:https://www.f2er.com/centos/381757.html

猜你在找的CentOS相关文章