1. 程式人生 > >linux下如何新增一個使用者並且讓使用者獲得root許可權

linux下如何新增一個使用者並且讓使用者獲得root許可權

測試環境:CentOS 5.5

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 檔案,找到下面一行,把前面的註釋(#)去掉



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

然後修改使用者,使其屬於root組(wheel),命令如下:

#usermod -g root tommy

修改完畢,現在可以用tommy帳號登入,然後在所有需要root許可權的命令前加sudo即可獲得root的許可權進行操作,如sudo vi /etc/sudoers。

方法二:修改 /etc/sudoers 檔案,找到下面一行,在root下面新增一行,如下所示:

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

修改完畢,現在可以用tommy帳號登入,然後在所有需要root許可權的命令前加sudo即可獲得root的許可權進行操作,如sudo vi /etc/sudoers。

方法三:修改 /etc/passwd 檔案,找到如下行,把使用者ID修改為 0 ,如下所示:

tommy:x:500:500:tommy:/home/tommy:/bin/bash

修改後如下

tommy:x:0:500:tommy:/home/tommy:/bin/bash

儲存,用tommy賬戶登入後,直接獲取的就是root帳號的許可權。

友情提醒:雖然方法三看上去簡單方便,但一般不推薦使用,推薦使用方法二。