Skip Password Prompt When Executing sudo
To skip the system prompt for the administrator's password, edit the sudoers file using visudo
add the following replacing "user" with your username:
# Don't prompt for password when using sudo.
user ALL=(ALL) NOPASSWD: ALL
This will modify the sudoers file to skip the sudo password prompt for the current user.
1 comment
Awesome, thnx! :)
Leave a Reply