Show pageBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== SyncThing ====== [[https://syncthing.net/|Homepage]] ===== Autostart ===== ==== systemd ==== //siehe auch: [[https://docs.syncthing.net/users/autostart.html#how-to-set-up-a-user-service|Syncthing Docs – How to set up a user service]]// <code bash> systemctl --user enable syncthing.service systemctl --user start syncthing.service </code> ===== Firewall ===== https://docs.syncthing.net/users/firewall.html ==== ufw ==== <file - /etc/ufw/applications.d/syncthing> [syncthing] title=Syncthing description=Syncthing file synchronisation ports=22000/tcp|21027/udp [syncthing-gui] title=Syncthing-GUI description=Syncthing web gui ports=8384/tcp </file> <code bash> ufw app update syncthing ufw app update syncthing-gui </code> ===== Troubleshooting ===== ==== systemd user service doesn't work when ecryptfs is enabled for home directory ==== Add the following to your user service file (''systemctl edit --user --full syncthing''): <code>RequiresMountsFor=/home/your_user_name</code> ==== I added a device but it doesn't show a notification! ==== Possibly your devices still have to discover each other. - wait a few (~5) minutes - restart syncthing on both ends - rinse and repeat, it will work eventually You can circumvent this by hardcoding (selfhosted) discovery servers and relays. Last modified: 2024-07-05 14:31