...
Run
visudo
.Code Block sudo visudo
Find the sudo group entry. It will look like the following:
Code Block %sudo ALL=(ALL:ALL) ALL
Add a no-password rule:
Code Block your_username ALL=(ALL:ALL) NOPASSWD:ALL
If you wish to remove the sudo password requirement for all users:
Code Block %sudo ALL=(ALL:ALL) NOPASSWD:ALL
Exit
visudo
and save by pressingCTRL+X
, thenY
, and thenENTER
.
...