## Linux systemd service file installation notes

The provided service file and run scripts assume the backseat app has been cloned (or sym-linked) on the SBC at `/LRAUV/lrauv-backseat-helper`. 

Execute the following as root:

```bash
# copy the service file into the systemd folder:
sudo cp LrauvBackseat.service /etc/systemd/system/.

# enable the service 
sudo systemctl daemon-reload
sudo systemctl enable LrauvBackseat.service
sudo systemctl start LrauvBackseat.service

# check
sudo systemctl status LrauvBackseat.service

# stop
sudo systemctl stop LrauvBackseat.service
```

Tested on Jetson Nano running Ubuntu 18.04