centos 7 新建用户及sudo赋权

一般来说为了增加系统安全性,root不能用来登录的。

使用adduser yunwei114 修改密码:passwd yunwei114   

授权 whereis sudoers 查看sudoers路径 

然后 ll /etc/sudoers 查看权限 -r–r—– 1 root root 3938 Mar  6  2019 /etc/sudoers  # 只有读权限 

[root@localhost~]# chmod -v u+w /etc/sudoers           # 赋予读写权限 mode of ‘/etc/sudoers’ changed from 0440 (r–r—–) to 0640 (rw-r—–) 

修改sudoers文件 vim /etc/sudoers 

查找root ALL=(ALL) ALL 然后再添加yunwei114 ALL=(ALL) ALL  

取消sudoers可读写权限: chmod -v u-w /etc/sudoers  

正文完
 
评论(没有评论)