要給用戶root權限,可以按照以下步驟進行操作:
sudo usermod -aG sudo <username>
其中,<username>
是要添加到sudo組的用戶名。sudo visudo
# Allow members of group sudo to execute any command
%sudo ALL=(ALL:ALL) ALL
將其解除注釋,使其生效:%sudo ALL=(ALL:ALL) ALL
現(xiàn)在,用戶就可以使用sudo命令以root權限執(zhí)行命令了。用戶只需在命令前加上sudo,如:
sudo <command>
其中,<command>
是要以root權限執(zhí)行的命令。