linux sudo提權

Xneat發表於2024-08-20

方法一、
1.建立普通使用者username
useradd username

2.執行以下命令以編輯sudoers檔案,實際是vi /etc/sudoers
visudo

找到該行內容root ALL=(ALL) ALL,新增username使用者,儲存退出:wq
root ALL=(ALL) ALL
username ALL=(ALL) ALL

方法二、
1.建立普通使用者username
useradd username

2.修改使用者username為'wheel'使用者組,使其擁有sudo許可權,-a 選項表示將使用者新增到指定的組中,而不會刪除使用者現有的其他組關係。
-G 選項表示要新增使用者到的組的名稱,這裡是'wheel'組。
usermod -aG wheel username

  1. 檢視修改後的組資訊
    id username
    uid=1004(username) gid=1004(username) 組=1004(username),10(wheel)

方法三、
提權username使用者可以利用sudo
建立 username 使用者,並指定為 wheel 管理員許可權組
useradd username -G wheel
echo 123456|passwd --stdin username
id username

相關文章