天天看點

centos賦予普通使用者超級管理者權限

1、添加使用者,首先用adduser指令添加一個普通使用者,指令如下:
#adduser tommy      //添加一個名為tommy的使用者
#passwd tommy       //修改密碼


Changing password for user tommy.
New UNIX password:                //在這裡輸入新密碼
Retype new UNIX password:         //再次輸入新密碼
passwd: all authentication tokens updated successfully.

2、賦予root權限
方法一: 修改 /etc/sudoers 檔案,找到%wheel一行,把前面的注釋(#)去掉
## Allows people in group wheel to run all commands
%wheel    ALL=(ALL)    ALL
然後修改使用者,使其屬于root組(wheel),指令如下:
#usermod -g root tommy
修改完畢,現在可以用tommy帳号登入,然後用指令 sudo su - ,即可獲得root權限進行操作。

方法二: 修改 /etc/sudoers 檔案,找到root一行,在root下面添加一行,如下所示:
## Allow root to run any commands anywhere
root    ALL=(ALL)     ALL
tommy   ALL=(ALL)     ALL
修改完畢,現在可以用tommy帳号登入,然後用指令 sudo su - ,即可獲得root權限進行操作。

方法三: 修改 /etc/passwd 檔案,找到如下行,把使用者ID修改為 0 ,如下所示:
tommy:x:500:500:tommy:/home/tommy:/bin/bash
修改後如下
tommy:x:0:500:tommy:/home/tommy:/bin/bash
儲存,用tommy賬戶登入後,直接擷取的就是root帳号的權限。

建議使用方法二,不要輕易使用方法三。      

如果覺得本文有用,可以關注下公衆号,

每日會推送技術博文,并且會分享學習資源和一些項目源碼

繼續閱讀