I guess this should be a simple thing for ubuntu users out there. I have two questions.
Whenever I need to run some command that requires permission from root, I run as sudo followed by that command. It would be nice if that does not prompt for password (but I should still be issuing a sudo to make sure that I know what I am doing). How to do this?
Every time I start my system, I go to terminal and start my VPN using sudo vpnc. This is almost everytime! How to automate this to a startup script?
Help much appreciated! Thanks
First Question
If you dont want to enter password everytime,then you should edit sudoers file.
sudo visudo
Then add the following line at the end of the file.
%username ALL=(ALL) NOPASSWD:ALL
Now if you enter sudo followed by the command it wont prompt you to enter password.
Second Question
sudo vpnc
to startup applications.To add that command in startup applications Goto System → Preferences → Startup Applications.
Tag the users or groups who you want to have passwordless access to sudo with "NOPASSWD" in your sudoers file (
sudo visudo
to edit it). See the man page for sudoers for more details.You can then create a startup script by editing the appropriate file for the shell you're using -- .profile, or .bashrc, or .cshrc, and so on.
In 10.04 I see that in the Network Manager (v0.8) I have a flag on the VPN Configuration screen (System > Preference > Network Connections , click the VPN tab, select the connection and "Edit") "Connect Automatically" I believe that it fires up the selected connection at login.