Setting up a user without a password
I'd like to be able to su
to another user to run a script with reduced permissions. Unfortunately I have to type the password in every time, is there a way to create a user without needing the password prompt?
Solution 1:
Try sudo
.
Add the following to your sudoers
file (by running visudo
):
%you ALL= (restricted) NOPASSWD: ALL
where you
is your username and restricted
is your reduced privilege user.
You can then run commands as restricted
without supplying a password:
sudo -u restricted whoami
You can also limit what commands can be executed via sudo by replacing the ALL
at the end of the line with the command line you want to allow. See man sudoers
for more information.