Linux Setup
Running Delphi as a systemd user service on Linux.
Install systemd units
bash scripts/install-systemd.sh
This script:
- Copies unit files to
~/.config/systemd/user/ - Runs
loginctl enable-lingerso units survive logout - Starts
claude-main.service - Enables nightly backup (
claude-backup.timer) and dreaming (claude-dreaming.timer) timers
Verify the service is running
systemctl --user status claude-main.service
Expected: active (running).
View logs
journalctl --user -u claude-main.service -f
Restart after config changes
systemctl --user restart claude-main.service
Enable on boot (if not done by the install script)
loginctl enable-linger $USER
systemctl --user enable claude-main.service