Jan 092017
To run boxbackup on a system which uses systemd, use this little systemd service file (taken from here and modified for Ubuntu):
# /etc/systemd/system/boxclient.service # This service file runs an Box Backup daemon that runs backups on demand. [Unit] Description=Box Backup Client Wants=network.target After=network.target [Service] ExecStart=/usr/bin/bbackupd -F -c /etc/boxclient/bbackupd.conf KillMode=process Restart=always [Install] WantedBy=multi-user.target
Enable and start via
systemctl enable boxclient.service systemctl start boxclient.service