首頁 >運維 >CentOS >centos怎麼賦予普通用戶root權限

centos怎麼賦予普通用戶root權限

王林
王林原創
2020-05-19 15:16:575125瀏覽

centos怎麼賦予普通用戶root權限

賦予一般用戶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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn