Syncthing

From Bibliotheca Anonoma
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Syncthing is a peer-to-peer dropbox replacement whereby each client, whether they are a phone, laptop, or server, sync their changes directly to each other.

CentOS/Fedora

Syncthing is available directly in the Fedora repositories

The way systemd is set up for syncthing can be a bit unusual. It is at the user level, allowing each user to have their own syncthing instance. On a desktop, observe the following:

yourusername@yourserver:~$ systemctl restart [email protected] yourusername@yourserver:~$ systemctl enable [email protected]

It will thus start every time your user logs in.

Allow the following two ports through your firewall:

# firewall-cmd --add-port 22000/tcp --permanent
# firewall-cmd --add-port 21027/udp --permanent