Answers for "sudo command without giving password"

1

sudo command without giving password

echo "$USER ALL=(ALL) NOPASSWD:ALL" | sudo tee -a /etc/sudoers
Posted by: Guest on August-31-2021
0

run command without sudo password

# Run `visudo` to edit the file `/etc/sudoers`:
sudo visudo

# For example, to allow the `shutdown` command to run without a password. 
# Add this to the file, replacing `myusername` with your own login name for your PC:
myusername ALL = NOPASSWD: /sbin/shutdown

# NOTE: `sudo` is still required to run the command so you still have to specify the command as:
sudo shutdown
Posted by: Guest on April-07-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language