pages:howtos:systemd:nextcloud-desktop
This is an old revision of the document!
Table of Contents
Nextcloud Desktop as a user service with systemd
Since quite some time I am annoyed by the Nextcloud client starting before the internet connection becomes available. That leads to a situation in which the Nextcloud Desktop Client presents a browser window with a login mask because it assumes it is disconnected.
My approach will start and manage the Nextcloud Desktop Client as a systemd user service as soon as a network connection becomes ready.
KDE Session Management, Autostart
- remove Nextcloud from autostart
- tick “start with an empty session” under “Desktop Session” in System Settings
Wait System Service
Check if the correct oneshot “wait” system service is enabled (NetworkManager in my case).
systemctl is-enabled NetworkManager-wait-online.service systemd-networkd-wait-online.service
enabled Failed to get unit file state for systemd-networkd-wait-online.service: No such file or directory
Systemd User Service
# as user mkdir -pv ~/.config/systemd/user/ vim ~/.config/systemd/user/nextcloud-desktop.service
[Unit] Description=Nextcloud Desktop Client After=network-online.target Wants=network-online.target [Service] Type=simple StandardOutput=journal ExecStart=/usr/bin/nextcloud Environment=Display=:0 Environment=XAUTHORITY/home/def/.Xauthority Restart=always [Install] WantedBy=default.target
enable the service
systemctl --user enable nextcloud-desktop.service
start the service
systemctl --user start nextcloud-desktop.service
check that the service is running
systemctl --user status nextcloud-desktop.service
pages/howtos/systemd/nextcloud-desktop.1633625258.txt.gz · Last modified: 2021/10/07 16:47 by mischerh