If you get tired of typing your password for sudo, but you don't want (or don't have permissions) to put NOPASSWD in your sudoers file, you can use the following procedure to update the sudo password timestamp and avoid typing your password.
Before proceeding please note: there are most certainly security implications related to using this procedure; of course, that's also true of using NOPASSWD in the sudoers file.
Step 1) Create $HOME/bin/sudo-hack.sh:
#!/bin/bash
while [ true ];
do
sudo -u root /bin/true > /dev/null 2> /dev/null
sleep 60
done
Step 2) Do an initial run of sudo to set its password timestamp:
$ sudo -u root /bin/true
Password: *******
Step 3) Start $HOME/bin/sudo-hack.sh in the background:
$ HOME/bin/sudo-hack.sh &
Now you can use sudo without getting a password prompt, regardless of how long it's been since the last time you ran sudo.
Source: http://bit.ly/u1df
1 comment
Sudo security
I prefer to use Google authenticator in PAM: each user has a unique ever-changing six digit code for one time usage. Considering I always have my iPhone with me, using it is not really a chore, and it allows me to maintain password security while also making sure sudo is correctly protected.
Barney