森托斯 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
。