码迷,mamicode.com
首页 > 其他好文 > 详细

Centos root权限修改

时间:2014-08-13 15:02:56      阅读:321      评论:0      收藏:0      [点我收藏+]

标签:linux   root   

方法一:修改 /etc/sudoers 文件,

找到下面一行,把前面的注释(#)去掉

## Allows people in group wheel to run all commands
%wheel    ALL=(ALL)    ALL

然后修改用户,使其属于root组(wheel),

命令如下:

#usermod -g root devuser
修改完毕,现在可以用tommy帐号登录,然后用命令 su – ,即可获得root权限进行操作。

方法二:修改 /etc/sudoers 文件,

找到下面一行,在root下面添加一行,

如下所示:

## Allow root to run any commands anywhere
root    ALL=(ALL)     ALL
devuser   ALL=(ALL)     ALL

修改完毕,现在可以用devuser帐号登录,然后用命令 sudo – ,即可获得root权限进行操作。

方法三:修改 /etc/passwd 文件,

找到如下行,把用户ID修改为 0 ,

如下所示:

devuser:x:0:33:devuser:/data/webroot:/bin/bash

Centos root权限修改,布布扣,bubuko.com

Centos root权限修改

标签:linux   root   

原文地址:http://blog.csdn.net/manburen01/article/details/38535447

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!