Ubuntu - How to run a terminal command on boot?
Solution 1:
Place it in /etc/rc.local
. (It is run as root, so sudo
is not needed there.)
Also, you may be interested to read additional info about runlevels: http://en.wikipedia.org/wiki/Runlevel
Solution 2:
There are different ways to automatically run commands:
The upstart system will execute all scripts form which it finds a configuration in directory
/etc/init
. These scripts will run during system startup (or in response to certain events, e.g., a shutdown request) and so are the place to run commands that do not interact with the user; all servers are started using this mechanism. You can find a readable introduction to at: http://upstart.ubuntu.com/getting-started.html the man pagesman 5 init
andman 8 init
give you the full details.A shell script named
.gnomerc
in your home directory is automatically sourced each time you log in to a GNOME session. You can put arbitrary commands in there; environment variables that you set in this script will be seen by any program that you run in your session. Note that the session does not start until the.gnomerc
script is finished; therefore, if you want to autostart some long-running program, you need to append&
to the program invocation, in order to detach it from the running shell.The menu option System -> Preferences -> Startup Applications allows you to define what applications should be started when your graphical session starts (Ubuntu predefines quite some), and add or remove them to your taste. This has almost the same purpose and scope of the
.gnomerc
script, except you don't need to knowsh
syntax (but neither can you use anysh
programming construct).
Solution 3:
For simple things you can add a command in System->Preferences->Sessions pointing to the location of your script.
Alternatively you can add it to /etc/init.d/rc.local
or make an upstart job if it's a more low level stuff.
Take a look at https://help.ubuntu.com/community/UbuntuBootupHowto for more info