Table of Contents

Starting applications/scripts while booting

Raspberry Pi OS (rc.local)

There are many ways to make programs run at boot in Raspian, and for the Otter, we use the rc.local method. To configure this has only two steps:

  1. Open /etc/rc.local, for example by using nano
  2. Add the command that is to be run, right above exit 0. For DUNE, this will look something like this:
sudo ./home/pi/dune-2019.02.1-armv7-32bit-linux-glibc-gcc4x/bin/dune -c otter/basic -p Hardware &
exit 0

Ubuntu 20.04 (systemd)

Find java version used readlink -f $(which java)