CentOS 使用 sudo 提示使用者不在sudoers檔案中的解決方法
[linux@localhost ~]$ su root 密碼: [root@localhost ~]#2、檢視/etc/sudoers檔案許可權,如果只讀許可權,修改為可寫許可權
[root@localhost ~]# ll /etc/sudoers -r--r-----. 1 root root 4030 12月 10 09:55 /etc/sudoers [root@localhost ~]# chmod 777 /etc/sudoers [root@localhost ~]# ls -l /etc/sudoers -rwxrwxrwx. 1 root root 4030 12月 10 09:57 /etc/sudoers3、修改/etc/sudoers檔案,執行命令如下:
/*username是你的使用者名稱*/ [root@localhost ~]# echo 'username ALL=(ALL) ALL' >> /etc/sudoers 或者root許可權下輸入Visudo 或者 vim /etc/sudoers,找到 root ALL=(ALL) ALL的欄位,在下一行追加: username ALL=(ALL) ALL5分鐘之後密碼過期,下次需要重新輸入,如果不想如此麻煩,可以用以下方法
username ALL=(ALL) NOPASSWD: ALL
說明:格式為{使用者名稱 網路中的主機=(執行命令的目標使用者) 執行的命令範圍}
4、儲存退出,並恢復/etc/sudoers的訪問許可權為440
[root@localhost ~]# chmod 440 /etc/sudoers [root@localhost ~]# ll /etc/sudoers -r--r-----. 1 root root 4030 12月 10 09:59 /etc/sudoers5、切換到普通使用者,測試使用者許可權提升功能
由龐順龍最後編輯於:4年前
內容均為作者獨立觀點,不代表八零IT人立場,如涉及侵權,請及時告知。
相關文章
- Fedora 20下解決使用者不在sudoers檔案中的解決方法
- MAC將 /etc/sudoers檔案修改錯後的幾種解決方法Mac
- 分享Linux下的sudo及其配置檔案/etc/sudoers詳細配置Linux
- 【sudo】配置sudoers實現oracle使用者以root身份執行命令Oracle
- 刪除檔案提示檔案正在被另一個人或程式使用的解決方法
- “專案檔案已被重新命名或已不在解決方案中”的解決辦法
- Ubuntu技巧之 is not in the sudoers file解決方法Ubuntu
- 解決 git 忽略了不在.gitignore中的檔案的問題,不在.gitignore 中的檔案被忽略了無法提交的的問題Git
- 使用root 切換普通使用者提示:[sudo] password for oracle:Oracle
- CentOS下OpenCV無法讀取影片檔案的解決方法CentOSOpenCV
- CentOS下OpenCV無法讀取視訊檔案的解決方法CentOSOpenCV
- SQL Server中 ldf 檔案過大的解決方法SQLServer
- 刪除檔案或目錄提示"檔案或目錄無法刪除"的解決方法!
- win10提示您沒有許可權在此位置中儲存檔案的解決方法Win10
- 虛擬主機使用者ftp和apache使用者檔案互操作許可權解決方法FTPApache
- etc/sudoers沒有這個檔案
- [Docker]在Ubuntu容器中建立sudo使用者DockerUbuntu
- win10電腦彈出windows找不到檔案提示的解決方法Win10Windows
- Ubuntu - WPS開啟檔案提示檔案被鎖定無法編輯解決方法Ubuntu
- xxx is not in the sudoers file.This incident will be reported.的解決方法IDE
- CentOS 7 操作使用者和組 && 常用的檔案操作CentOS
- linux建立使用者並新增到sudo使用者組中Linux
- sudo 出現unable to resolve host 解決方法
- sudo時出現unable to resolve host 的解決方法
- Ubuntu增加sudo使用者Ubuntu
- VSCode 中,TS 提示 ”無法找到 *.vue 宣告檔案“ 的解決方案VSCodeVue
- Linux中沒有rc.local檔案的解決方法Linux
- Win7電腦使用隨身碟複製檔案提示“exFAT寫入保護”的解決方法Win7
- Exchange 2003 新使用者不在global address list(GAL)中顯示的解決方案
- System.Security.Cryptography.CryptographicException:使用者的配置檔案是臨時配置檔案解決方案Exception
- wmv檔案不能快進的解決方法
- standby新增檔案錯誤的解決方法
- 本機檔案不能共享的解決方法
- Win10系統安裝jade6.5提示缺少檔案的解決方法Win10
- Win7系統中隨身碟複製檔案時提示“exFAT寫入保護”的解決方法Win7
- git提示檔案有修改但實際檔案無修改解決方案Git
- root使用者操作檔案提示 changing permissions of '***': Operation not permittedMIT
- 解決微信小程式 wxml檔案無法使用js方法微信小程式XMLJS