Resilio Sync

From ArchWiki
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.

Resilio Sync (formerly: BitTorrent Sync or BTSync) is a proprietary file sharing system that relies on the BitTorrent protocol.

Peer-to-peer (P2P) sync, instead of having a central server which archives every file, uses peer-to-peer connections between the devices themselves therefore there is no limit on data storage and/or transfer speed. The user's data is exclusively stored on the devices with which the user chose to be in sync with, hence it is required to have at least two user devices, or "nodes" to be online. If many devices are connected simultaneously, files are shared between them in a mesh networking topology.

Security

All traffic between devices is encrypted with AES-128 in counter mode, using a unique session key. This key is derived from a 'secret' which itself is a random 21 Byte key Base32-encoded. By handing over the 'secret', files and folders can be shared with other users.

Synchronization

When a device adds a folder for synchronization, a secret is generated. From now on, every device that wants to synchronize that folder must know the secret key.

The synchronization has no speed or size limits, as long as both devices have enough disk space.

Installation

rslsyncAUR can be installed from the AUR. The package includes systemd service definitions for managing the rslsync daemon. This package creates a default /etc/rslsync.conf for system/root operation. Make the desired changes (e.g. login id and password) to those files prior to enabling the service-file with systemctl.

Alternatively, the bare 'tar.gz' packaged executable can be downloaded from the official website. The rest of this guide assumes that you are using the rslsync AUR package.

Usage

The Linux client of Resilio Sync does not use a typical GUI, instead it sets up a WebUI server accessible at localhost:8888. Shared folders can also be configured statically in a configuration file, but doing so disables the WebGUI.

Once installed, you will first need to create a configuration file at ~/.config/rslsync/rslsync.conf, see #Configuration. You will also need to create the storage_path directory. When that is done, start and (if you want it to start on boot) start/enable the user service rslsync (i.e., with the --user flag).

The service will run as the user invoking the command. Note that the above command is not run as root: doing so may lead to a cryptic error stating that D-Bus has refused the connection.

Note:
  • It is important to make sure that when rslsync is run as the user, the rslsync.conf file and directory where the rslsync.pid file will be located have the correct user permissions, i.e. are owned by the user invoking the command. Failure to do so will prevent the service from running. If the user permissions are correct but rslsync still fails to run after being enabled, restart your system.
  • If running rslsync on a headless server, enable lingering to start rslsync and keep it running outside user sessions: Systemd/User#Automatic start-up of systemd user instances.

You can also run it as the rslsync.service system user (without the --user flag).

Configuration for this user is located at /etc/rslsync.conf, and metadata is saved in /var/lib/rslsync/ by default. You should review the configuration settings especially user and password, see below.

Configuration

A sample configuration file can be created using:

# rslsync --dump-sample-config > ~/.config/rslsync/rslsync.conf

You will probably want to change some of the settings, including:

  • device_name
  • storage_path
  • webui/login
  • webui/password
Note:
  • The rslsync executable does not create the storage_path directory if it does not exist, you will have to do this manually or use #Automatic config file creation.
  • The storage_path setting defines where metadata will be saved, not the synced files themselves. Where synced files are saved is configured on a per-folder basis in the WebGUI.
  • The configuration option webui/password_hash_unified is calculated with webui/password_hash_salt_unified prepended, if any salt is used at all.

Automatic config file creation

Tango-view-refresh-red.pngThis article or section is out of date.Tango-view-refresh-red.png

Reason: BitTorrent Sync is now Resilio. Information about BitTorrent Sync and its btsync-autoconfigAUR[broken link: package not found] package. (Discuss in Talk:Resilio Sync)

The btsync-autoconfigAUR[broken link: package not found] package provides a systemd user service (btsync-autoconfig.service) which, if enabled, triggers when a user's btsync.service starts and creates a config file with default values if it does not already exist.

Note: If the config file was generated by btsync-autoconfigAUR[broken link: package not found] it will be configured with a different port. Rather than 8888, the port for the user's instance of btsync will be 7889 + $UID. If your $UID is "1000", the port will be 8889.

The install script enables the service for all users by default. Although disabling it defeats most of its purpose, it can be disabled using

# systemctl --global disable btsync-autoconfig.service

Individual users can then enable it if they like:

$ systemctl --user enable btsync-autoconfig.service

btsync-autoconfig.service creates ~/.config/btsync/btsync.conf if it does not exist, and guesses some default values of the settings:

  • device_name: $USER@$HOSTNAME
  • storage_path: ~/.btsync
  • webui/login: $USER/password

The script also creates the storage_path directory set in the config file if it does not exist. This is done intependently from the creation of the config file.

Troubleshooting

Missing storage path

If you start the service but cannot reach the WebUI, check the status of the rslsync by entering systemctl --user status rslsync (or systemctl status rslsync for the system-wide instance).

A common error is Storage path specified in config file does not exist.. This is easily fixed by mkdir ~/.rslsync, or whatever your storage_path is set to.

Ignore some files/folders synchronization

If you don’t want Resilio Sync to track some files in your sync folder, please use IgnoreList. IgnoreList is located in hidden .sync folder.

IgnoreList is a UTF-8 encoded .txt file that allows you to specify single files, paths or rules for ignoring during the synchronization job. Each line of the IgnoreList file represents a separate rule. All the files that fall under the ignore filter are not indexed and not counted in the "Size" column in Sync main view.

It supports '?' and '*' wildcard symbols.

Note that IgnoreList is applied only to the folder where it is contained and will not work with the files that have already been synced. If you add indexed files to IgnoreList, they will be deleted on other syncing devices. In order to avoid this:

  • Remove the folder from sync on all the devices.
  • Modify IgnoreList file on all of them so that it contains same info.
  • Re-add the modified folders.

For further details, please refer to Ignoring files in Sync (IgnoreList)

ARM alignment error

Add the line w /proc/cpu/alignment - - - - 2 to /etc/tmpfiles.d/rslsync.conf. (You need to create the file).
Note that this may lead to performance degradation.

See also