running a shell script every time you boot linux - GNU/Linux

Users browsing this thread: 1 Guest(s)
archery
Registered
---

i'm sure there's some sophisticated method for running a shell script at boot, but here's an easy alternative:

open /etc/crontab in a text editor (you'll need root):

$ sudo vim /etc/crontab

add this line to the bottom: @reboot root /bin/bash /root/init.sh

now, open /root/init.sh and put your shell script there.

a word of warning:

don't use the root user unless you need to. if you don't, create a new user and use it instead:

$ useradd -g users -s /bin/(zsh|bash) username

---


Messages In This Thread
running a shell script every time you boot linux - by archery - 03-01-2017, 10:43 PM