### Linux systemd service file installation notes:

 ```shell script
# 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
```