linux root權(quán)限命令設(shè)置方法
linux root權(quán)限命令設(shè)置方法
linux系統(tǒng)下該怎么設(shè)置root權(quán)限呢?下面由學(xué)習(xí)啦小編為大家整理了linux root權(quán)限設(shè)置命令,希望大家喜歡!
root權(quán)限是系統(tǒng)權(quán)限的一種,root是Linux和unix系統(tǒng)中的超級管理員用戶帳戶,該帳戶擁有整個(gè)系統(tǒng)至高無上的權(quán)力,所有對象他都可以操作。
linux root權(quán)限設(shè)置
添加用戶,首先用adduser命令添加一個(gè)普通用戶,命令如下:
#adduser xyz //添加一個(gè)名為x的用戶
#passwd xyz //修改密碼
Changing password for user xyz.
New UNIXpassword: //在這里輸入新密碼
Retype new UNIX password: //再次輸入新密碼
passwd: all authentication tokens updated successfully.
賦予root權(quán)限,這里有3種方法供參考
root權(quán)限設(shè)置方法1
修改/etc/sudoers 文件,找到下面一行,在root下面添加一行,如下所示:
## Allow root to run any commands anywhere
root ALL=(ALL) ALL
xyz ALL=(ALL) ALL
修改完畢,現(xiàn)在可以用xyz帳號登錄,然后用命令 su - ,即可獲得root權(quán)限。
root權(quán)限設(shè)置方法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權(quán)限。
root權(quán)限設(shè)置方法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帳號的權(quán)限。