歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux技術 >> linux下如何添加一個用戶並且讓用戶獲得root權限

linux下如何添加一個用戶並且讓用戶獲得root權限

日期:2017/3/3 12:27:43   编辑:Linux技術

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.

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

## Allow root to run any commands anywhere

root ALL=(ALL) ALL

tommy ALL=(ALL) ALL

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

wq!

Copyright © Linux教程網 All Rights Reserved