要將用戶設置為管理員,您需要遵循以下步驟:
usermod -aG wheel username
這將將用戶添加到wheel組,該組具有sudo權限。 注意:將"username"替換為要添加為管理員的實際用戶名。
visudo
## Allow root to run any commands anywhere
root ALL=(ALL) ALL
## Allow members of the wheel group to execute any command
%wheel ALL=(ALL) ALL
現在,指定的用戶應該具有管理員權限,并可以使用sudo命令進行特權操作。