Adicione um arquivo de serviço do systemd, por exemplo,
cat <<EOF | sudo tee /etc/systemd/system/dapperdox.service
[Unit]
Description=This is dapperdox
Wants=network-online.target
After=
[Service]
Type=forking
User=dapperdox
ExecStart=/sbin/startproc /full/path/to/dapperdox -spec-dir=examples/specifications/tc -bind-addr 129.19.20.55:4096
ExecStop=/sbin/killproc -TERM /full/path/to/dapperdox
[Install]
WantedBy=multi-user.target
EOF
Agora tente se você pode iniciá-lo.
sudo systemctl start dapperdox.service
Ajuste as coisas diferentes conforme necessário.
Depois, você deseja ativá-lo para que ele seja iniciado durante a inicialização.
sudo systemctl enable dapperdox.service