CentOS下添加用戶而且讓用戶得到root權限

轉自:https://blog.csdn.net/tropicofcancer9/article/details/53926920bash

一、添加用戶,首先用adduser命令添加一個普通用戶,命令以下: 

#adduser tommy .net

//添加一個名爲tommy的用戶
#passwd tommy   //修改密碼
Changing password for user tommy.
New UNIX password:     //在這裏輸入新密碼
Retype new UNIX password:  //再次輸入新密碼
passwd: all authentication tokens updated successfully.

二、賦予root權限 

方法一: 修改 /etc/sudoers 文件,找到下面一行,把前面的註釋(#)去掉

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

而後修改用戶,使其屬於root組(wheel),命令以下:

#usermod -g root tommy

修改完畢,如今能夠用tommy賬號登陸,而後用命令 su - ,便可得到root權限進行操做。

方法二: 修改 /etc/sudoers 文件,找到下面一行,在root下面添加一行,以下所示:

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

修改完畢,如今能夠用tommy賬號登陸,而後用命令 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賬號的權限。

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

 

<轉自結束>blog

#######################################################token

 

不過貌似上面紅色加粗的那個su - ,我平時用的都是sudo。我不知道做者是筆誤仍是什麼,由於用su的話,是須要知道root的密碼的,因此sudo會好一點。io

相關文章
相關標籤/搜索