Skip to content

Instantly share code, notes, and snippets.

@rwenz3l
Created November 23, 2017 09:35
Show Gist options
  • Save rwenz3l/1f5226883cf11c32f2477f1c21afc7f1 to your computer and use it in GitHub Desktop.
Save rwenz3l/1f5226883cf11c32f2477f1c21afc7f1 to your computer and use it in GitHub Desktop.
Install BTSync on CentOS7
yum update
cat > /etc/yum.repos.d/resilio-sync.repo <<'EOF'
[resilio-sync]
name=Resilio Sync $basearch
baseurl=http://linux-packages.resilio.com/resilio-sync/rpm/$basearch
enabled=1
gpgcheck=1
EOF
rpm --import https://linux-packages.resilio.com/resilio-sync/key.asc
yum update
yum install resilio-sync
systemctl enable resilio-sync
systemctl start resilio-sync
systemctl status resilio-sync
sed -i 's|127.0.0.1|0.0.0.0|' /etc/resilio-sync/config.json
systemctl restart resilio-sync
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment