Hello,
as you know to execute commands and processing by an administrator on a machine, we always need to use the keyword Sudo before the command, to indicate that the executor of the command is an administrator of the machine.
after the user will need to type his password so that the system accepts his request.
In this tutorial, i will show how to configure passwordless sudo account on a Linux machine., so that the user will not need to type his password every time after a sudo command.
After completing this tutorial, you can run super user commands (allowed) without entering a password.
the procedure is simple just execute the following commands :
sudo nano /etc/sudoers
username ALL=(ALL:ALL) NOPASSWD: ALL
And Change username with your user account and save file.
now it's good, you can run sudo commands without having to type the password every time.
0 comments:
Post a Comment