溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

linux給用戶添加root權(quán)限方法總結(jié)

發(fā)布時(shí)間:2020-10-03 10:04:08 來源:腳本之家 閱讀:347 作者:yajie_china 欄目:服務(wù)器

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

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

2、賦予root權(quán)限

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

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

然后修改用戶,使其屬于root組(wheel),命令如下:

#usermod -g root tommy

修改完畢,現(xiàn)在可以用tommy帳號(hào)登錄,然后用命令 su - ,即可獲得root權(quán)限進(jìn)行操作。

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

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

修改完畢,現(xiàn)在可以用tommy帳號(hào)登錄,然后用命令 su - ,即可獲得root權(quán)限進(jìn)行操作。

方法三: 修改 /etc/passwd 文件,找到如下行,把用戶ID修改為 0 ,如下所示:

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

修改后如下

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

保存,用tommy賬戶登錄后,直接獲取的就是root帳號(hào)的權(quán)限。

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

linux如何為用戶添加root權(quán)限

## Allow root to run any commands anywhere

root ALL=(ALL) ALL

tommy ALL=(ALL) ALL

修改完畢后,現(xiàn)在可以用tommy賬號(hào)登錄。

然后用命令 su ,即可獲得root權(quán)限進(jìn)行操作。

以上就是本次介紹的全部相關(guān)知識(shí)點(diǎn),感謝大家的學(xué)習(xí)和對(duì)億速云的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI