Linux 賦予普通使用者root 許可權

2022-01-14 17:45:23 字數 846 閱讀 2822

linux的普通使用者在安裝一些東西的時候或者執行命令的時候,終端始終會提示許可權不夠,我們會將這個普通使用者賦予root許可權,但是,和root還是有區別的,因為只能執行root規定好的一些操作命令。

#adduser claire   //新增乙個名為claire的使用者

#passwd claire   //change the password

changing password for user claire

new unix password :  //input new password

retype new unix password:  //input the new password again

password:all authentication tokens updated successfully.

change /etc/sudoers file ,找到%wheel 一行,把前面的注釋(#)去掉

##allow people in group wheel to run all commands

%wheel all=(all)   all

然後修改使用者,使其屬於root組(wheel),命令如下:

#usermod -g root claire

修改完畢後,現在可以用claire 賬號登陸,然後用sudo su -,即可獲得root許可權進行操作。

修改/etc/sudoers 檔案,找到root一行,在root下面新增一行,如下所示:

root  all=(all)  all

claire  all=(all)  all

修改完畢後,可以用claire賬號登陸,然後用sudo su - ,即可獲得root許可權。

linux賦予普通使用者root許可權

開始 測試環境 centos 5.5 1 新增使用者,首先用adduser命令新增乙個普通使用者,命令如下 adduser tommy 新增乙個名為tommy的使用者 passwd tommy 修改密碼 changing password for user tommy.new unix passwo...

Linux 賦予普通使用者root 許可權

adduser 360mini 新增乙個名為360mini的使用者 passwd 360mini change the password changing password for user 360mini new unix password input new password retype ne...

賦予普通使用者root許可權

1 新增使用者,首先用adduser命令新增乙個普通使用者,命令如下 adduser tom 新增乙個名為tom的使用者 passwd tom 修改密碼 changing password for user tom.new unix password 在這裡輸入新密碼 retype new unix...