如何在linux下添加一個(gè)root權(quán)限用戶r
2016-05-25 23:45:46
11474
1、添加用戶,首先用adduser命令添加?個(gè)普通用戶,命令如下:
#adduser landui
//添加一個(gè)名為landui的用戶
#passwd tommy //修改密碼
Changing password for user tommy.
New UNIXpassword: //在這里輸入新密碼
Retype new UNIX password: //再次輸入新密碼
passwd: all authentication tokens updated successfully.
2、賦予root權(quán)限
方法:修改 /etc/sudoers文件,找到下面一行,把前面的注釋(#)去掉
## Allows people in group wheel to run all commands
%wheel ALL=(ALL) ALL
然后修改用戶,使其屬于root組,命令如下:
#usermod -g root landui
修改完畢,現(xiàn)在可以用landui帳號(hào)登錄,然后用命令 su - ,即可獲得root權(quán)限進(jìn)行操作。