The currently installed svn version is 1.8.8 and I want to downgrade it to svn 1.6. Can you please guide me how to do this?
Thanks
01 Answer
Advantages of this answer
- No changes in a
listfile - Preventing upgrades
- Simple reversible
You have to download three deb files.
cd ~/Downloads
wget
wget
wget Install via
sudo dpkg -i libdb4.8_4.8.30-11ubuntu1_amd64.deb\ subversion_1.6.17dfsg-3ubuntu3.5_amd64.deb\ libsvn1_1.6.17dfsg-3ubuntu3.5_amd64.deband prevent the upgrade
sudo apt-mark hold libdb4.8
sudo apt-mark hold subversion
sudo apt-mark hold libsvn1If you want to do that later reversed.
sudo apt-mark unhold libdb4.8
sudo apt-mark unhold subversion
sudo apt-mark unhold libsvn1
sudo apt-get dist-upgrade 2