Created
November 23, 2017 09:35
-
-
Save rwenz3l/1f5226883cf11c32f2477f1c21afc7f1 to your computer and use it in GitHub Desktop.
Install BTSync on CentOS7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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