1. 程式人生 > >linux如何把普通使用者新增到sudo組

linux如何把普通使用者新增到sudo組

linux下把普通使用者新增到sudo組的方式。
1. 先cd到/etc/sudoers目錄下
2. 由於sudoers檔案為只讀許可權,所以需要新增寫入許可權,chmod u+w sudoers
3. vim sudoers
4. 找到root ALL = (ALL) ALL這一行,在下一行加入username ALL = (ALL) ALL。username指代你想加入sudo組的使用者名稱。
5. 把sudoers檔案的許可權修改回來。chmod u-w sudoers
6. 這樣普通使用者可以執行sudo命令了。