发布网友 发布时间:2022-04-22 12:13
共1个回答
热心网友 时间:2023-05-21 23:53
1、添加用户首先用adser命令添加普通用户命令: #adser tommy //添加名tommy用户 #passwd tommy //修改密码 Changing password for user tommy. New UNIX password: //输入新密码 Retype new UNIX password: //再输入新密码 passwd: all authentication tokens updated successfully. 2、赋予root权限:修改/etc/sudoers 文件找面行前面注释(#)掉 ## Allows people in group wheel to run all commands %wheel ALL=(ALL) ALL 修改用户使其属于root组(wheel)命令: #usermod -g root tommy 修改完毕现用tommy帐号登录用命令 su - 即获root权限进行操作 二:修改/etc/sudoers 文件找面行root面添加行所示: ## Allow root to run any commands anywhere root ALL=(ALL) ALL tommy ALL=(ALL) ALL 修改完毕现用tommy帐号登录用命令 su - 即获root权限进行操作 三:修改/etc/passwd 文件找行用户ID修改 0 所示: tommy:x:500:500:tommy:/home/tommy:/bin/bash修改tommy:x:0:500:tommy:/home/tommy:/bin/bash 保存用tommy账户登录直接获取root帐号权限 友情提醒:虽三看简单便般推荐使用推荐使用二