由于日常使用时root用户权限过大,所以添加一个用户供日常使用,或者供他人使用。
adduser [用户名]
passwd [用户名]
新创建的用户并不能使用sudo命令,需要给他添加授权。
chmod -v u+w /etc/sudoers
使用vim
编辑器打开sudoers
文件
vim /etc/sudoers
在sudoers文件中找到如下位置并添加如下内容:
[用户名] ALL=(ALL) ALL(如需新用户使用sudo时不用输密码,把最后一个ALL改为NOPASSWD:ALL即可)
Ps:
vim
编辑器,按【i】
键进入编辑模式(左下角出现--INSERT
--标识),内容编辑完成后,按【Esc】
键退出编辑模式(标识消失),最后输入【:wq】
保存并退出vim编辑器。
chmod -v u-w /etc/sudoers
“The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time.” – Tom Cargill
标 题:CentOS 7 中添加新用户并授权