1. 程式人生 > >We trust you have received the usual lecture from the local System Administrator. It usually boils

We trust you have received the usual lecture from the local System Administrator. It usually boils

linux下面無法執行sudo命令
(a)進入超級使用者模式。
輸入"su -",系統會讓你輸入超級使用者密碼,輸入密碼後就進入了超級使用者模式。(當然,你也可以直接用root用)
(b)新增檔案的寫許可權。
輸入命令"chmod u+w /etc/sudoers"。
(c)編輯/etc/sudoers檔案。
輸入命令"vim /etc/sudoers",進入編輯模式,找到這一 行:"root ALL=(ALL) ALL"在起下面新增"xxx ALL=(ALL) ALL"(這裡的xxx是你的使用者名稱),然後儲存退出。
(d)撤銷檔案的寫許可權。
輸入命令"chmod u-w /etc/sudoers"。