创建 root 用户 - 任务失败

创建 root 用户 - 任务失败

森托斯 6.8
尝试创建一个新的用户

adduser root_2
passwd root_2
Changing password for user root_2.
New password: 
Retype new password: 
passwd: all authentication tokens updated successfully.

跑步维苏多,找到该行,克隆该行并将其制作为根_2

visudo

## Allow root to run any commands anywhere
root    ALL=(ALL)       ALL
root_2    ALL=(ALL)       ALL

保存并退出

 :wq

切换到用户根_2 并测试它的行为是否像帐户

su root_2

reboot
reboot: Need to be root

我们也尝试一下我在网上找到的这个东西。

作为

usermod -aG wheel root_2
su root_2
reboot
reboot: Need to be root

再次..没有成功..

任务失败。

我缺少什么?

答案1

只能有一个root用户:用户 ID 为 0 的用户。从系统的角度来看,用户帐户是小整数。字母数字名称只是为了方便操作员。新用户root_2没有用户 ID 0,因此它不是root定义的。

通过编辑该sudoers文件,您已获得root_2在任何地方使用sudo.您没有使其等同于root,因为只有用户 id 0 是root

相关内容