linux下添加用戶並賦予root權限

1、添加用戶,首先用adduser命令添加一個普通/系統用戶,命令如下:
# adduser [-r] –d /tommy 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 文件,找到下面一行,在root下面添加一行,如下所示:

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

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


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章