It seems the last version for ubuntu 18.04 is rsync 3.1.2 (with !apt-get --only-upgrade install rsync).
Is there a way I can update it to the latest? (preferably 3.2.1+) Thanks!
It seems the last version for ubuntu 18.04 is rsync 3.1.2 (with !apt-get --only-upgrade install rsync).
Is there a way I can update it to the latest? (preferably 3.2.1+) Thanks!
You can install newer rsync (3.2.3-8ubuntu1~18.04.sav0) from Rob Savoury's Utilities PPA by
sudo apt-add-repository ppa:savoury1/utilities
sudo apt-get update
sudo apt-get install rsync
Reverting to default version is possible by
sudo apt-get install ppa-purge
sudo ppa-purge ppa:savoury1/utilities
sudo ppa-purge ppa:savoury1/utilities
twice for it to downgrade rsync back to the default version
– nicholsonjf
Feb 07 '23 at 21:46
After that, I managed to update by some non-standard method, which is not working anymore, thus asking this question.
Finally, N0rbert's solution is very easy and works like charm. I should've asked this question long ago.
– Cyber Avater Jan 28 '22 at 10:01