歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> CentOS賦予一個普通用戶root權限

CentOS賦予一個普通用戶root權限

日期:2017/2/28 15:46:48   编辑:Linux教程

Linux的普通用戶在安裝一些東西或者執行一些命令的時候,終端會提示權限不夠。那麼怎麼才能給用戶賦予root權限呢?當然,就算賦予了root權限,也和root用戶還是有區別的,因為只能執行root規定好的一些操作命令。

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帳號的權限。 建議使用方法二,不要輕易使用方法三。
Copyright © Linux教程網 All Rights Reserved