Last active
May 12, 2017 02:32
-
-
Save albertomm/0b02a4169e89dafc8a87d923909566b6 to your computer and use it in GitHub Desktop.
Install rsync 3.1.2 with detect-renamed patch from source
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
wget https://download.samba.org/pub/rsync/rsync-3.1.2.tar.gz | |
wget https://download.samba.org/pub/rsync/rsync-patches-3.1.2.tar.gz | |
tar xzvf rsync-3.1.2.tar.gz | |
tar xzvf rsync-patches-3.1.2.tar.gz | |
cd rsync-3.1.2/ | |
patch -p1 <patches/detect-renamed.diff | |
./configure | |
make | |
sudo make install | |
cd .. | |
sudo chown -R root:root rsync* | |
sudo mv rsync* /usr/local/src/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment