You are not logged in.
Hi all,
I have installed Btsync with the help of this nice guide:
https://wiki.archlinux.org/index.php/BitTorrent_Sync
Running this on the RaspberryPi.
And it starts when I boot but it does not show any logs (systemctl status btsync@username) and the GUI does not work until I do a
systemctl restart btsync@username
What shall I do?
Regards
Kristofer
Offline
Post the service file you are using.
Moving to other Architectures...
Offline
Service file: btsync@.service
[Unit]
Description=Bittorent Sync service for %i
After=network.target
[Service]
User=%i
ExecStart=/usr/bin/btsync --config %h/.config/btsync/btsync.conf --nodaemon
Restart=on-abort
[Install]
WantedBy=multi-user.target
After a reboot when the btsync does not work:
systemctl status btsync@xx
btsync@xx.service - Bittorent Sync service for xx
Loaded: loaded (/usr/lib/systemd/system/btsync@.service; enabled)
Active: active (running) since Thu 1970-01-01 01:00:23 CET; 44 years 0 months ago
Main PID: 143 (btsync)
CGroup: /system.slice/system-btsync.slice/btsync@xx.service
`-143 /usr/bin/btsync --config /home/xx/.config/btsync/btsync.c...
Offline
My service file is slightly different:
[Unit]
Description=BitTorrent Sync service for %i
After=network.target
[Service]
Type=forking
User=%i
ExecStart=/usr/local/bin/btsync --config %h/.config/Syncapp/sync.conf
Restart=on-abort
PIDFile=%h/.config/Syncapp/.sync.pid
[Install]
WantedBy=multi-user.target
Offline