redhat賦予普通用戶root權限


方法一: 修改 /etc/sudoers 文件,找到下面一行,把前面的注釋(#)去掉
## Allows people in group wheel to run all commands
%wheel    ALL=(ALL)    ALL
 
然后修改用戶,使其屬於root組(wheel),命令如下:
 
usermod -g root tommy
 
或者直接添加用戶到
username ALL=(ALL)     ALL
 
注意sudoers是只讀文件,要先將文件權限改為可寫
 
方法二: 修改 /etc/sudoers 文件,找到下面一行,在root下面添加一行,如下所示:
 
## Allow root to run any commands anywhere
root    ALL=(ALL)     ALL
tommy   ALL=(ALL)     ALL
 
修改完畢,現在可以用tommy帳號登錄,然后用命令 sudo – ,即可獲得root權限進行操作。
 
方法三: 修改 /etc/passwd 文件,找到如下行,把用戶ID修改為 0 ,如下所示:
tommy:x:0:33:tommy:/data/webroot:/bin/bash


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM