Linux下sudo -s无法执行的解决方法
2019-10-18 本文已影响0人
龃龉前行
当在Linux下执行 sudo -s 时出现如下提示:
We trust you have received the usual lecture from the local System
Administrator. It usually boils down to these three things:
#1) Respect the privacy of others.
#2) Think before you type.
#3) With great power comes great responsibility.
解决方法:
(a)进入超级用户模式。
输入"su -",系统会让你输入超级用户密码,输入密码后就进入了超级用户模式。(当然,你也可以直接用root)
(b)添加文件的写权限。
输入命令"chmod u+w /etc/sudoers"。
(c)编辑/etc/sudoers文件。
输入命令"vim /etc/sudoers",进入编辑模式,找到这一 行:"root ALL=(ALL) ALL"在起下面添加"xxx ALL=(ALL) ALL"(这里的xxx是你的用户名),然后保存退出。
(d)撤销文件的写权限。
输入命令"chmod u-w /etc/sudoers"。