linux root權限命令設置方法
linux root權限命令設置方法
linux系統(tǒng)下該怎么設置root權限呢?下面由學習啦小編為大家整理了linux root權限設置命令,希望大家喜歡!
root權限是系統(tǒng)權限的一種,root是Linux和unix系統(tǒng)中的超級管理員用戶帳戶,該帳戶擁有整個系統(tǒng)至高無上的權力,所有對象他都可以操作。
linux root權限設置
添加用戶,首先用adduser命令添加一個普通用戶,命令如下:
#adduser xyz //添加一個名為x的用戶
#passwd xyz //修改密碼
Changing password for user xyz.
New UNIXpassword: //在這里輸入新密碼
Retype new UNIX password: //再次輸入新密碼
passwd: all authentication tokens updated successfully.
賦予root權限,這里有3種方法供參考
root權限設置方法1
修改/etc/sudoers 文件,找到下面一行,在root下面添加一行,如下所示:
## Allow root to run any commands anywhere
root ALL=(ALL) ALL
xyz ALL=(ALL) ALL
修改完畢,現(xiàn)在可以用xyz帳號登錄,然后用命令 su - ,即可獲得root權限。
root權限設置方法2
修改 /etc/sudoers文件,找到下面一行,把前面的注釋(#)去掉
## Allows people in group wheel to run all commands
%wheel ALL=(ALL) ALL
然后修改用戶,使其屬于root組(wheel),命令如下:
#usermod -g root xyz
修改完畢,現(xiàn)在可以用xyz帳號登錄,然后用命令 su - ,即可獲得root權限。
root權限設置方法3
修改/etc/passwd 文件,找到如下行,把用戶ID修改為 0 ,如下所示:
xyz:x:500:500:xyz:/home/xyz:/bin/bash
修改后如下
xyz:x:0:500:xyz:/home/xyz:/bin/bash
保存,用xyz賬戶登錄后,直接獲取的就是root帳號的權限。