Skip to content

Instantly share code, notes, and snippets.

@jeschkies
Created July 27, 2020 13:53
Show Gist options
  • Save jeschkies/06c83036a5654fa31e5aa88700dbe58e to your computer and use it in GitHub Desktop.
Save jeschkies/06c83036a5654fa31e5aa88700dbe58e to your computer and use it in GitHub Desktop.
Resilio Sync repo definition for dnf.
[resilio-sync]
name=Resilio Sync
baseurl=https://linux-packages.resilio.com/resilio-sync/rpm/$basearch
enabled=1
gpgcheck=1
gpgkey=https://linux-packages.resilio.com/resilio-sync/key.asc
sslverify=1
@jeschkies
Copy link
Author

jeschkies commented Jul 27, 2020

  1. Save this file to /etc/yum.repos.d/resilio-sync.repo

  2. As root

dnf config-manager --add-repo /etc/yum.repos.d/resilio-sync.repo
dnf config-manager --set-enabled resilio-sync
dnf install resilio-sync

@Alistair1231
Copy link

Alistair1231 commented Nov 3, 2022

Thanks. For my future convenience, here as a script to copy-paste :D

sudo curl -L https://gist.github.com/jeschkies/06c83036a5654fa31e5aa88700dbe58e/raw/b96bfd85d08972be028d0e9b04803874c09e9adc/resilio-sync.repo --output /etc/yum.repos.d/resilio-sync.repo
sudo dnf config-manager --add-repo /etc/yum.repos.d/resilio-sync.repo
sudo dnf config-manager --set-enabled resilio-sync
sudo dnf install resilio-sync
# start and enable service
sudo systemctl start resilio-sync
sudo systemctl enable resilio-sync
# now open http://localhost:8888

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment