久久青草精品A片狠狠,日韩欧美视频一区二区,亚洲国码AV日韩,国产精品黄在

幫助中心 >  技術知識庫 >  云服務器 >  服務器教程 >  linux中如何添加用戶并賦予root權限詳解

linux中如何添加用戶并賦予root權限詳解

2019-09-06 13:37:18 4161

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


#adduser eric


//添加一個名為eric的用戶

#passwd eric//修改密碼

Changing password for user eric.

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 eric

修改完畢,現在可以用eric帳號登錄,然后用命令 su – ,即可獲得root權限進行操作。


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


## Allow root to run any commands anywhere

root  ALL=(ALL)   ALL

eric  ALL=(ALL)   ALL

修改完畢,現在可以用eric帳號登錄,然后用命令 sudo – ,即可獲得root權限進行操作。


方法三:強烈推薦使用此方法,修改 /etc/passwd 文件,找到如下行,把用戶ID修改為 0


如下所示:

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


提交成功!非常感謝您的反饋,我們會繼續努力做到更好!

這條文檔是否有幫助解決問題?

非常抱歉未能幫助到您。為了給您提供更好的服務,我們很需要您進一步的反饋信息:

在文檔使用中是否遇到以下問題: