賦予一般用戶root權限的方法:
1、新增用戶,先用adduser指令新增一個普通用戶,指令如下:
#adduser tommy //添加一个名为tommy的用户 #passwd tommy //修改密码 Changing password for user tommy. New UNIX password: //在这里输入新密码 Retype new UNIX password: //再次输入新密码 passwd: all authentication tokens updated successfully.
2、修改/etc/sudoers 文件,找到root用戶這一行,在root下面添加一行,如下所示:
## Allow root to run any commands anywhere root ALL=(ALL) ALL tommy ALL=(ALL) ALL
修改完畢,現在可以用tommy帳號登錄,然後用指令sudo su - ,即可取得root權限進行操作了。
推薦教學:centos教學
以上是centos怎麼賦予普通用戶root權限的詳細內容。更多資訊請關注PHP中文網其他相關文章!