解决Linux下无法使用sudo命令问题

时间:2021-10-23 12:50:34

问题描述

今天搭建Hadoop伪集群时在虚拟机上新创建了一个Linux系统,但当使用普通用户登录后在终端中执行sudo命令时提示以下错误:

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.

解决Linux下无法使用sudo命令问题

解决方法

一、 切换到root用户

终端中执行 su 命令,然后输入密码,从普通用户切换为根用户

二、为sudoers配置文件添加写权限

sudoers文件位于 /etc 目录下,其为系统配置sudo用户的一个只读配置文件。在root身份下执行 chmod +w /etc/sudoers 命令为该文件添加写权限。

三、编辑sudoers配置文件

执行 vi /etc/sudoers 命令对配置文件进行编辑。在文件中先找到

Allows people in group wheel to run all commands

这段配置,然后在配置下方新起一行添加所需要增加 sudo权限的用户,格式如下

用户名 ALL=(ALL) ALL

解决Linux下无法使用sudo命令问题

四、退出保存

编辑完配置文件保存退出后,使用 su 普通用户名 切换回普通用户重新执行sudo命令成功解决问题。