共计 304 个字符,预计需要花费 1 分钟才能阅读完成。
1、添加用户,首先用 adduser 命令添加一个普通用户,命令如下:
useradd test1
// 添加一个名为 test1 的用户
New UNIX password: // 在这里输入新密码
Retype new UNIX password: // 再次输入新密码
passwd: all authentication tokens updated successfully.
2. 赋予 sudo 权限
修改 /etc/sudoers 文件,打开后找到下面一行,在 root 账号下面添加一行,如下所示:
## Allow root to run any commands anywhere
root ALL=(ALL) ALL
test1 ALL=(ALL) ALL
正文完