日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

sudo 执行报错centos is not in the sudoers file. This incident will be reported.

發布時間:2024/3/26 编程问答 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 sudo 执行报错centos is not in the sudoers file. This incident will be reported. 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

執行sudo -i,提示如下信息

[centos@localhost ~]$ sudo -i
[sudo] password for centos:?
centos is not in the sudoers file. ?This incident will be reported.

1.執行su,輸入當前登錄的用戶密碼,密碼不可見,直接輸入按回車

[centos@localhost ~]$ su Password:?

2.進入目錄 cd /etc/sudoers,如果找不到,執行命令 chmod u+w /etc/sudoers,接下來編輯文件

vi /etc/sudoers

[root@localhost centos]# cd /etc/sudoers bash: cd: /etc/sudoers: Not a directory [root@localhost centos]# chmod u+w /etc/sudoers [root@localhost centos]# vi /etc/sudoers

3.找到root ? ?ALL=(ALL) ? ? ? ALL

????????Tips

????????????????1.查找字符串 按:/root? 回車,就可以查找root關鍵字的文本,按“n”查找下一個,按“p” 查找上一個;

????????????????2.輸入文本,按“i

????????????????3.保存“:wq

在下面一行加入一下任意行,username 為當前用戶名

username ALL=(ALL) ALL
%username ALL=(ALL) ALL
username ALL=(ALL) NOPASSWD: ALL
%username ALL=(ALL) NOPASSWD: ALL

第一行:允許用戶youuser執行sudo命令(需要輸入密碼).
第二行:允許用戶組youuser里面的用戶執行sudo命令(需要輸入密碼).
第三行:允許用戶youuser執行sudo命令,并且在執行的時候不輸入密碼.
第四行:允許用戶組youuser里面的用戶執行sudo命令,并且在執行的時候不輸入密碼.

4.再次執行??sudo -i 就成功了


?

總結

以上是生活随笔為你收集整理的sudo 执行报错centos is not in the sudoers file. This incident will be reported.的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。