# 讓用戶獲得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 文件,找到下面一行,把前面的注釋(#)去掉
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帳號的權限。
友情提醒:雖然方法三看上去簡單方便,但一般不推薦使用,推薦使用方法二。
- 序言
- Linux系統目錄結構
- 常用命令
- 查看基本信息
- crontab
- chmod
- chown
- cp
- df
- whois
- whoami
- who
- w
- finger
- user
- vi
- find
- mount
- umount
- 擴展知識
- 執行.sh文件
- 壓縮和解壓
- 實例
- mysql每天自動備份
- 其他錯誤
- Warning: Using a password on the command line interface can be insecure.
- 相關閱讀
- 服務器
- Linux SSH登錄權限控制
- 讓用戶獲得root權限
- oneinstack
- 目錄說明
- 服務管理
- 升級版本
- 配置https
- 常見問題
- PHP緩存
- 如何管理 FTP 賬號
- MySQL 數據庫管理