创建新用户
1.新建用户
2.设置新用户密码
授权
1.查找sudoers文件路径并赋予权限
1 2 3 4 5 6
| [root@work ~]# whereis sudoers # 查找sudoers文件路径 sudoers: /etc/sudoers /etc/sudoers.d /usr/share/man/man5/sudoers.5.gz [root@work ~]# ls -l /etc/sudoers # 查看权限 -r--r-----. 1 root root 4328 10月 30 2018 /etc/sudoers [root@work ~]# chmod -v u+w /etc/sudoers # 赋予读写权限 mode of "/etc/sudoers" changed from 0440 (r--r-----) to 0640 (rw-r-----)
|
2.修改文件
输入命令vim /etc/sudoers
修改sudoers文件,添加新用户信息:
1 2 3
| ## Allow root to run any commands anywhere root ALL=(ALL) ALL dev_user ALL=(ALL) ALL #这个是新用户
|
3.收回权限
1 2 3 4
| [root@work ~]# chmod -v u-w /etc/sudoers mode of "/etc/sudoers" changed from 0640 (rw-r-----) to 0440 (r--r-----) [root@work ~]# ls -l /etc/sudoers -r--r-----. 1 root root 4354 12月 30 01:18 /etc/sudoers
|