What is the best way to start a script at boot as a service. I need the following commands to run.
#!/bin/bash
VBoxManage startvm "cuckoo-window" --type gui &
cd /opt/cuckoo/utils/
sudo python api.py --host 0.0.0.0 --port 8090 &
cd /opt/cuckoo/web/
sudo python manage.py runserver 0.0.0.0:8008 &
sudo python /opt/cuckoo/cuckoo.py &