Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
docker_notes:fileshare [2025-01-05 Sun wk01 10:42] – [syncthing] baumkpdocker_notes:fileshare [2025-01-05 Sun wk01 11:25] (current) – [syncthing] baumkp
Line 24: Line 24:
 Syncthing is a **free and open source** peer-to-peer file synchronization application available for Windows, macOS, Linux, Android, and BSD. It can sync files between devices on a local network, or between remote devices over the Internet. Data security and data safety are built into its design. Version 1.0 was released in January 2019 after five years in beta. Syncthing is a **free and open source** peer-to-peer file synchronization application available for Windows, macOS, Linux, Android, and BSD. It can sync files between devices on a local network, or between remote devices over the Internet. Data security and data safety are built into its design. Version 1.0 was released in January 2019 after five years in beta.
  
 +The following is a systemd service file that can be used to start the syncthing service.  It is taken from https://github.com/syncthing/syncthing/releases and based upon the user specific type.  So create a new systemd service, ''/lib/systemd/system/syncthing@.service''
 +++++syncthing@.service|
 <code>[Unit] <code>[Unit]
 Description=Syncthing - Open Source Continuous File Synchronization for %I Description=Syncthing - Open Source Continuous File Synchronization for %I
Line 51: Line 53:
  
 [Install] [Install]
-WantedBy=multi-user.target</code>+WantedBy=multi-user.target</code> ++++
  
 +''systemctl daemon-reload'' to update systemd.
 +
 +To use example: ''sudo systemctl status syncthing@user.service''
  
 ====References==== ====References====