debian 运行 sudo 时提示“xxx is not in the sudoers file”,怎么破?
debian 系统,是 minimal 镜像。
用 su root 安装了 sudo,切换回当前用户后,执行 sudo 提示:
xxx is not in the sudoers file
这种情况怎么办?
SGLV5
9 years, 5 months ago
Answers
因为该用户不是sudo用户,可以通过以下步骤添加
-
进入超级用户模式。也就是输入"su -",系统会让你输入超级用户密码,输入密码后就进入了超级用户模式
-
添加文件的写权限。也就是输入命令"chmod u+w /etc/sudoers"。
-
编辑/etc/sudoers文件。也就是输入命令"vim /etc/sudoers",进入编辑模式,找到这一行:"root ALL=(ALL) ALL"在起下面添加"xxx ALL=(ALL) ALL"(这里的xxx是你的用户名),然后保存退出。
-
撤销文件的写权限。也就是输入命令"chmod u-w /etc/sudoers"。
然后就行了。
xyz龙加农
answered 9 years, 5 months ago