Linux创建新用户并赋予root权限

具体步骤

使用root用户执行下列命令

//创建新用户
adduser ghb123
//修改密码
passwd ghb123
//修改配置文件
vim /etc/sudoers

# User privilege specification
root    ALL=(ALL:ALL) ALL

修改为

# User privilege specification
root    ALL=(ALL:ALL) ALL
ghb123  ALL=(ALL:ALL) ALL

即可赋予root权限。

发表评论

电子邮件地址不会被公开。 必填项已用*标注

开始在上面输入您的搜索词,然后按回车进行搜索。按ESC取消。

返回顶部