760

How can I run scripts automatically when Ubuntu starts up so I don't have to run them manually after startup?

myusuf3
  • 34,189
  • 7
    If someone could also show both WHEN and WHERE that would be awesome. I say this because I know there are at least 2 ways to start a script that will fire before other applications have been started (like X11) – David Stocking Aug 04 '10 at 20:20
  • 4
    This entire answer thread is a mess. The Stack Exchange format doesn't seem to be best suited for this question – Gabriel Fair Feb 25 '18 at 19:09
  • 5
    +1 to @GabrielFair. A LARGE part of the problem is that the original question and answer are TEN YEARS OLD. I'd also add that there are too many ways to solve this problem. What happened to the simplicity of the Unix philosophy?! Request someone knowledgeable and with sufficient points rewrite this post, or add a new, up-to-date, definitive answer for modern os versions. – Malik A. Rumi Jun 14 '20 at 09:17

10 Answers10

808

One approach is to add an @reboot cron task:

  1. Running crontab -e will allow you to edit your cron.
  2. Adding a line like this to it:

    @reboot /path/to/script
    

    will execute that script once your computer boots up.

user.dz
  • 48,105
ceejayoz
  • 8,177
  • 115
    The @reboot keyword is a nice tip because it is not widely known. – jathanism Aug 11 '10 at 13:39
  • 28
    Nice. Any idea exactly when this triggers? – Oli Feb 02 '11 at 13:54
  • 7
    So... this wouldn't run if I lost power and the PC turned again when power is restored? – Mike Wills Jun 21 '12 at 19:27
  • 32
    @siamii: man 5 crontab says that @reboot is executed on startup (when cron daemon is started). – jfs Mar 29 '13 at 16:04
  • 10
    This is awesome. So far this seems better than rc.local since the system seems more setup by this point (PATH, etc). It is odd that it is so hard to call something after system startup.. – Karthik T Oct 10 '13 at 07:17
  • 1
    I tried this for a non-root user and it did not seem to work. I had to move this into an /etc/cron.d script. – Fabrizio Regini Nov 07 '13 at 14:03
  • Works for me for non-root user,Ubuntu 13.10 Desktop – Dogweather Feb 25 '14 at 00:20
  • this did not work for me in Ubuntu 10.04.4 LTS – amphibient May 08 '14 at 19:40
  • 3
    @amphibient Chances are you configured something wrong. @reboot is documented here: https://help.ubuntu.com/community/CronHowto – ceejayoz May 08 '14 at 20:36
  • 2
    i did sudo crontab -e and then added @reboot /my/script to it. when i just run /my/script, it works fine – amphibient May 08 '14 at 20:41
  • @amphibient It may be something in /my/script itself. Scripts run from cron may not have the same $PATH for example. If you try @reboot touch /tmp/something I'll bet that works fine. – ceejayoz May 08 '14 at 21:42
  • you are right, that worked. my script says ifconfig > /some/shared_vm/dir. this is on a VM. i am trying to fetch the IP address of the VM when the system starts and print it to a file in a directory shared with the host. i think the problem is that when the VM first starts, this directory is not mounted yet, that's why. so i need to run the script maybe 5 sec after the system starts. any idea how to do that? – amphibient May 08 '14 at 22:03
  • 1
    @reboot works. I had a problem when I ran my script in terminal it worked, but not with cron. So I added >> /var/log/mylog.log 2>&1 in crontab to see the log. After restart I noticed it was missing JAVA_HOME (my script was calling some java jars). – FrEaKmAn Aug 07 '14 at 11:08
  • @ceejayoz: My script has: #!/bin/bash gnome-terminal --tab -t "MyPC" -e "sh -c 'ls;exec bash'" --tab -t "Mypc2" " and it's not working. Any idea? I checked as u said touch that works – Siddharth Trikha Dec 15 '14 at 05:14
  • @amphibient Maybe prepending a sleep 5 would give you the desired effect. – Ashhar Hasan Dec 07 '15 at 03:51
  • added skype and autokey there, only thing that happens at XFCE4 Login is an error message. – phil294 Aug 07 '16 at 17:51
  • this doesn't work in ubuntu 16.04 – Shift 'n Tab Nov 23 '16 at 06:53
  • @ShiftN'Tab That seems extraordinarily unlikely. – ceejayoz Nov 23 '16 at 19:25
  • @ceejayoz this is what i entered @reboot /path/to/script/myscript.sh – Shift 'n Tab Nov 24 '16 at 03:42
  • @ShiftN'Tab It's still extraordinarily unlikely they removed the feature. It's far more likely you've messed something up in the script itself. Did you get any errors or output in the logs? – ceejayoz Nov 24 '16 at 13:52
  • @ceejayoz inside of my script is a command that disables the key of the keyboard which is Alt i wrote this code xmodmap -e 'keycode 64=' when i try to run the script manually it works perfectly fine. But not with this method. – Shift 'n Tab Nov 24 '16 at 15:22
  • @ceejayoz you can take a look here in my post http://askubuntu.com/questions/852198/disabling-keys-in-ubuntu-permanently?noredirect=1#comment1310339_852198 – Shift 'n Tab Nov 24 '16 at 15:25
  • @ShiftN'Tab That should probably go in your ~/.profile instead of a @reboot, as I suspect it affects just your current session. Cron's session isn't the same as your own session. I see someone noted it's deprecated, too. – ceejayoz Nov 24 '16 at 15:26
  • @ceejayoz yes but those link doesnt have a sound solution to my problem. Hope you could help – Shift 'n Tab Nov 24 '16 at 15:36
  • And what about 15.04 and later? – fosslinux Jun 11 '17 at 05:59
  • 1
    @ubashu What about 15.04? Ubuntu didn't get rid of cron. – ceejayoz Jun 11 '17 at 16:39
  • according to https://askubuntu.com/questions/735935/running-command-at-startup-on-crontab crontab @reboot does not do anything after a system shut-down, or cold boot. – user1709076 Jun 15 '17 at 16:20
  • However for anyone who's interested, I found that on AWS EC2, when I 'stop' the EC2 instance and start the EC2 instance again, that doing crontab reboot /home/ubuntu/mountefs.sh method works for mounting EFS - so the reboot method appears to work for 'restart', and 'stop' and 'start', so I would expect this method to work for any disaster recovery scenario? – user1709076 Jun 15 '17 at 16:31
  • This has worked for me (Ubuntu 16.04). I have a question though. How can i see the errors (if any) generated after running the script? (I have run a Django app after everytime i have started the Desktop) – ni8mr Aug 19 '18 at 02:43
  • Tried to add a path to bash script, tried to write the command itself - nothing worked. Tried to redirect whole output into a file - it's created but empty. Ubuntu 18.04 :(( – Stalinko Oct 30 '19 at 10:51
  • 3
    this did not work for me in Ubuntu 20.04.4 LTS – reducing activity Oct 08 '20 at 22:58
  • 3
    Sadly, this does not work for me in 20.04.2. I feel really bad to downvote this because this answer is not for everyone. – Alexander Beatson Oct 19 '21 at 11:39
  • 1
    @AlexanderBeatson No need to feel bad. I've gotten well more rep from this answer than it deserves, and subsequent answers are likely better here in 2021. – ceejayoz Oct 31 '21 at 02:08
  • 1
    Didn't work in 22.04.1, unfortunately. I ended up using the other solution below, with the Startup Applications. – marcelocra Oct 10 '22 at 01:11
  • This worked for me on 22.04.x, the AWS EC2 AMI which appears in QuickStart. – t_motooka Mar 14 '23 at 08:29
250

Depending on what sort of scripts you need to run.. For services and the like you should use upstart. But for a user script these should be launched as session scripts by gnome! Have a look under System > Preferences > Startup Applications.

On a side note if you need some scripts to be run on terminal login you can add them to the .bash_login file in your home directory.

For 14.04 and older

A simple command (one which doesn't need to remain running) could use an Upstart job like:

start on startup
task
exec /path/to/command

Save this in a .conf file in /etc/init (if you need it to run as root when the system boots up), or in ~/.config/upstart (if you need it to run as your user when you log in).

  • 63
    Considering how SO and StackExchange runs, could you give an example of an upstart script and where it would be placed? That would make this a much better answer. Your link says it's not being maintained and to look at the upstart cookbook, which is huuuge. I don't have too much of an idea where to start. – Ehtesh Choudhury Feb 04 '13 at 04:03
  • 5
    What if i need to run the command as root? – dopatraman Jul 15 '15 at 01:58
  • 2
    @dopatraman The answer states that all processes with this are run as root. – AStopher Oct 24 '15 at 11:43
  • 5
    Please update this answer to explain what to do on systems running systemd rather than upstart (Ubuntu 15.04+). –  Jan 09 '16 at 18:52
  • can any please help in running below as upstart service

    https://gist.github.com/jobsamuel/6d6095d52228461f3c53

    – Rizwan Patel Mar 14 '16 at 14:19
  • In Ubuntu 14.04, if the command is a path to a script where an ifconfig is executed, it does not work. It must be placed, for instance, in .bashrc of the corresponding user. – aloplop85 Jul 07 '16 at 07:22
  • 4
    This answer does not make sense to me. The applications listed in system->pref->startup applications can neither be found in /etc/init/ nor in ~/.config/upstart. So where are startup applications defined? – phil294 Aug 07 '16 at 17:49
  • 1
    I want to run wget -r http://tug.org/ on startup after network connection established. How can I do this? – alhelal May 09 '17 at 13:56
  • @EhteshChoudhury I found here a nice introduction to upstart: https://www.digitalocean.com/community/tutorials/the-upstart-event-system-what-it-is-and-how-to-use-it – Juan Calero May 03 '18 at 09:48
  • 6
    upstart is deprecated (not supported, last release in 2014) – stenci Feb 03 '20 at 17:23
228

You can add commands to /etc/rc.local:

sudo nano /etc/rc.local

This executes the commands as root.

To execute commands as a specific user, use sudo -i -u (-i to also run the login shell). For example, to establish a persistent SSH tunnel, where myhost is definde in johndoes ~/.ssh/config file:

sudo -i -u johndoe autossh -nNT -L 1234:localhost:1234 myhost

Note that if /etc/rc.local did not exist (as is the case on Ubuntu since 16.04), you need to add a shebang line at the top (e.g. #!/bin/bash), and ensure the file is executable:

sudo chmod a+x /etc/rc.local
muru
  • 197,895
  • 55
  • 485
  • 740
  • 27
    This most directly answers the question: how to simply execute some scripts when your system boots. upstart does a more complex task: starts daemon processes. – Dogweather Aug 07 '13 at 19:01
  • Do I need to put the path of my script or it also needs the sh before the path? – John John Pichler Apr 10 '15 at 21:31
  • 1
    So upstart starts daemon processes while /etc/rc.local starts bash scripts? – Donato May 10 '15 at 18:51
  • 7
    Should it? This no longer works these days, right? – DaVince Apr 28 '17 at 08:29
  • 7
    Doenst work with Ubuntu 17.04 systemd – qodeninja Aug 01 '17 at 03:58
  • 6
    Note that if you make this file yourself (like I did), then you will have to change file to executable with chmod 755 rc.local, and add #!/bin/bash to the first line. – psitae Aug 02 '17 at 16:42
  • Does the system wait for the script to finish before continuing the booting process? – Psddp Aug 13 '17 at 01:28
  • Still a good answer 7 years later. – Mars Aug 21 '17 at 12:28
  • 2
    This should be the accepted answer – goonerify Jun 14 '20 at 07:43
  • great! Thank you @paolo-granada-lim ! You solved my problem in old Ubuntu16.x: Using a LUKS with the usual /dev/mapper method led to noexec of this (home) partition. Did not care for "exec" in fstab (!), did not care for rwx of directories or so; SOLUTION: Just put "sudo mount -o remount,exec /home " in the /etc/rc.local (which already had an shebang). Now my encrypted mount works fine with exec permission thanks to the automatic remount. 10 years after .... THX ! – opinion_no9 Dec 13 '20 at 21:50
161

For 15.04 and later:

To run a (short-lived)1 command at startup using systemd, you can use a systemd unit of type OneShot. For example, create /etc/systemd/system/foo.service containing:

[Unit]
Description=Job that runs your user script

[Service] ExecStart=/some/command Type=oneshot RemainAfterExit=yes

[Install] WantedBy=multi-user.target

Then run:

sudo systemctl daemon-reload
sudo systemctl enable foo.service

Essentially, this is just converting a typical Upstart job to a systemd one (see Systemd for Upstart users).

You can run multiple commands from the same service file, using multiple ExecStart lines:

[Service]
ExecStart=/some/command
ExecStart=/another/command some args
ExecStart=-/a/third/command ignore failure

The command must always be given with the full path. If any command fails, the rest aren't run. A - before the path tells systemd to ignore a non-zero exit status (instead of considering it a failure).

Relevant:


For user sessions, you can create the systemd unit in ~/.config/systemd/user instead. This should work with 16.04 onwards, but not earlier releases of Ubuntu with systemd (since those still used Upstart for user sessions). User session units can be controlled with the same commands as with system services, but with the --user option added:

systemctl --user daemon-reload
systemctl --user status foo.service

Shell syntax

Note that, unlike Upstart, systemd doesn't run the Exec* commands through a shell. It performs some limited variable expansion and multiple command (separated by ;) itself, but that's about it as far as shell-like syntax goes. For anything more complicated, say redirection or pipes, wrap your command in sh -c '...' or bash -c '...'.


1As opposed to long-lived daemons.

muru
  • 197,895
  • 55
  • 485
  • 740
  • is it possible to set a priority on the job? or specify that it depends on another service to be started first? – r3wt Apr 25 '17 at 00:38
  • 1
    @r3wt yes, there are different ways to do that. The WantedBy used here, for example, makes it start when the multi-user.target is reached. You can use Before, After, Requires, etc. See man systemd.unit – muru Jan 03 '18 at 06:07
  • @PerlDuck not the only thing it was lacking. Thanks! – muru Mar 05 '18 at 13:53
  • You're welcome. — Btw, the RemainAfterExit depends on the service you start and its desired behaviour. For instance, /bin/df -h would should have RemainAfterExit=no. – PerlDuck Mar 05 '18 at 14:19
  • @PerlDuck There's nothing inherent in df that needs RemainAfterExit=no. Unless you want to repeatedly execute the command each time you run systemctl start foo. – muru Mar 05 '18 at 14:32
  • 1
    The difference comes when you issue systemctl status foo: with RemainAfterExit=yes it says active while with RemainAfterExit=no it doesn't. However. – PerlDuck Mar 05 '18 at 15:22
  • @PerlDuck that's a cosmetic change compared to the difference when starting the service multiple times. – muru Mar 05 '18 at 15:28
  • Does it mean that sudo ls /etc/systemd/system/*.service lists all the services that run on startup? – João Pimentel Ferreira Jun 12 '19 at 20:33
  • I followed your suggestion to read man 5 systemd.service and I got even more confused. Say I want to mount an sshfs filesystem at boot as user instead of root, so I can't do it with fstab. However. I obviously need to make sure the network is up when the service starts. How would I do that? And is a Oneshot still the right way or should it be "long lived"? – Andyc Jul 29 '21 at 18:07
  • @Andyc in the case of sshfs, https://stackoverflow.com/a/19972859/2072269 or https://askubuntu.com/a/1117790/158442 in /etc/fstab to mount. (The relevant parts from my own /etc/fstab include _netdev,users,IdentityFile=/home/muru/.ssh/id_rsa,idmap=user,allow_other,default_permissions,uid=1000,gid=1000. Works fine enough.) If I did have to use systemd to mount something, I'd use systemd.mount instead. – muru Jul 30 '21 at 00:40
  • @muru I can't believe it. I spent all day yesterday trying to make the sshfs in fstab work, including the configurations from the answers you linked and a million aothers, to no avail. I couldn't ssh into the remote machine with sudo, which made me try the systemd route. Today I come here, I try to sudo ssh into the remote machine, and it works fine. I have no clue how that happened. Maybe the computer itself needed a rest (although I didn't turn it off, I left it on all night). – Andyc Jul 30 '21 at 05:59
  • Note you can specify the user and group to run the script as with User=xxxx and Group=xxxx under the Service header. – Aaron Silverman Sep 04 '21 at 05:06
  • Its not possible Service has more than one ExecStart= setting, which is only allowed for Type=oneshot services. Refusing. – Arturski Jul 05 '22 at 17:15
  • This worked for me. I just had to add one step - make the new service executable with sudo chmod a+x foo.service. – John Bonfardeci Apr 27 '23 at 02:59
  • @JohnBonfardeci service files definitely don't need to be executable (in fact, none of the service files shipped by default with Ubuntu are executable). – muru Apr 27 '23 at 03:54
75

There are different ways to automatically run commands:

  1. The upstart system will execute all scripts from 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 pages man 5 init and man 8 init give you the full details.

  2. 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.

  3. 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 know sh syntax (but neither can you use any sh programming construct).

  • 12
  • "This has almost the same purpose and scope of the .gnomerc script", except .gnomerc apparently runs *before* loading Unity, and Startup Applications apparently runs *after* loading Unity. I had to run a program that sits on Unity's menu bar and it made a huge difference in this case!
  • – That Brazilian Guy Jan 23 '13 at 16:13
  • 1
    @ruda.almeida Thanks for pointing that out. The answer was written in the pre-Unity days. – Riccardo Murri Jan 23 '13 at 16:48
  • 1
    sudo update-rc.d myscript.sh defaults, where /etc/init.d/myscript.sh is your script, also runs it at startup. – Dan Dascalescu Aug 09 '16 at 06:16