Create systemd units
- create a
<UNIT>
.service file and copy to /etc/systemd/system/<UNIT>.service
- grab template content from beneath
- run
sudo systemctl daemon-reload
to indicate that new units have been created
- check if unit is listed with
sudo systemctl list-unit-files
- start service with
sudo systemctl start <UNIT>
- check status of unit with
sudo systemctl status <UNIT>
- enable service with
sudo systemctl enable <UNIT>
to start at boot