CentOS-7 设置普通用户为超级用户


CentOS-7 设置普通用户为超级用户

1、修改/etc/sudoers权限
sudo chmod u+w /etc/sudoers
2、添加超级成员
找到 root  ALL=(ALL)    ALL 
在下方添加
user ALL=(ALL)    ALL
3、添加超级组
找到 %wheel  ALL=(ALL)       ALL
在下方添加
%groupname ALL=(ALL)    ALL
4、保存
5、把/etc/sudoers的权限修改回来
chmod 0440 /etc/sudoers

View Code

 

原创文章,作者:254126420,如若转载,请注明出处:https://blog.ytso.com/273912.html

(0)
上一篇 2022年7月13日
下一篇 2022年7月13日

相关推荐

发表回复

登录后才能评论