linux 下如何添加一個用戶,並給予用戶root權限

一、添加用戶,首先用adduser命令添加一個普通用戶,命令以下:php

adduser tommy //添加一個名爲tommy的用戶 passwd tommy //修改密碼 Changing password for user tommy. New UNIX password: //在這裏輸入新密碼 Retype new UNIX password: //再次輸入新密碼 passwd: all authentication tokens updated successfully.
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

二、賦予root權限markdown

方法一:

修改/etc/sudoers 文件,找到下面一行,在root下面添加一行,以下所示:spa

## Allow root to run any commands anywhere root ALL=(ALL) ALL tommy ALL=(ALL) ALL
  • 1
  • 2
  • 3

修改完畢,如今能夠用tommy賬號登陸,而後用命令 sudo -i ,便可得到root權限進行操做。.net

相關文章
相關標籤/搜索