← Alle Anleitungen
Syncthing
Syncthing is a continuous, decentralized peer-to-peer file synchronization tool that replicates folders directly between your own devices over an encrypted connection, with no central server or cloud in the middle.
Zielsystem: Debian/Ubuntu Linux (also Windows, MacOS, BSD)File SyncOffizielle Website ↗Offizielle Dokumentation ↗
Diese Anleitung basiert auf der offiziellen Dokumentation von Syncthing, oben verlinkt — überprüfe dort immer die genauen Paket-/Versionsnamen, bevor du diese Befehle auf einem Produktionsserver ausführst, da sich Distributions- und Projektversionen mit der Zeit ändern.
1Add the official APT repository (Debian/Ubuntu)
sudo mkdir -p /etc/apt/keyringssudo curl -L -o /etc/apt/keyrings/syncthing-archive-keyring.gpg https://syncthing.net/release-key.gpgecho "deb [signed-by=/etc/apt/keyrings/syncthing-archive-keyring.gpg] https://apt.syncthing.net/ syncthing stable-v2" | sudo tee /etc/apt/sources.list.d/syncthing.listsudo apt-get updatestable-v2 tracks the monthly stable releases; use 'candidate' instead for release candidates.
2Install Syncthing
sudo apt-get install syncthing3Run Syncthing
Run it directly, or as a persistent per-user systemd service.
systemctl --user enable --now syncthing.service4Access the web GUI
On first launch Syncthing generates its config, encryption keys, and TLS certificate, then opens its admin GUI.
The GUI is at http://localhost:8384/ and binds to localhost only by default; your browser must accept cookies for it to work.