1. 程式人生 > >linux給用戶加入sudo權限

linux給用戶加入sudo權限

超級用戶 name 是你 clas 運行 系統 例如 導致 con

linux給用戶加入sudo權限:
有時候,linux以下執行sudo命令,會提示類似:
xxxis not in the sudoers file. This incident will be reported.
這裏,xxx是username稱。然後導致無法運行sudo命令,這時候,例如以下解決:
  1. 進入超級用戶模式。

    也就是輸入"su -",系統會讓你輸入超級用戶password,輸入password後就進入了超級用戶模式。(當然。你也能夠直接用root用)

  2. 加入文件的寫權限。也就是輸入命令"chmod u+w /etc/sudoers
    "。
  3. 編輯/etc/sudoers文件。

    也就是輸入命令"vim /etc/sudoers",進入編輯模式,找到這一 行:"root ALL=(ALL) ALL"在起以下加入"xxx ALL=(ALL) ALL"(這裏的xxx是你的username)。然後保存退出。

  4. 撤銷文件的寫權限。

    也就是輸入命令"chmod u-w /etc/sudoers"。
    然後即可了

linux給用戶加入sudo權限