2021-05-12 14:32:11
Linux中讓普通使用者擁有超級使用者許可權的設定
2019-12-17 18:57:58
如果當前使用者不是超級使用者,則沒有超級許可權,當輸入sudo + 命令時,系統提示:
user is not in the sudoers file. This incident will be reported.
這時按以下步驟即可解決。
1
進入超級使用者模式。輸入"su",輸入超級使用者密碼後就進入了超級使用者模式。
2
新增檔案的寫許可權:
輸入命令「chmod u+w /etc/sudoers」
3
編輯/etc/sudoers檔案:
輸入命令"vim /etc/sudoers"
4
找到這一行:"root ALL=(ALL) ALL"
在起下面新增"xxx ALL=(ALL) ALL"(這裡的xxx是要改的使用者名稱)
5
然後儲存檔案。
6
復原檔案的寫許可權:
chmod u-w /etc/sudoers
相關文章