Updating SVN subversion client 1.6 to 1.7 in Linux (Centos).
Hope this helps...
First of all remove the old version of subversion
1. To check the installed subversion
#rpm -qa | grep subversion
subversion-1.6.11-9.el6_4.i686
2. To remove the subversion
#rpm -ev subversion-1.6.11-9.el6_4.i686
Then follow the below steps
Note : Use sudo only if root is not enabled.
sudo yum update
sudo yum groupinstall "Development tools"
sudo yum groupinstall "Additional Development"
wget http://apache.mirrors.timporter.net/subversion/subversion-1.7.8.tar.gz
tar zxvf subversion-1.7.xxx.tar.gz
cd subversion-1.7.8
./get-deps.sh
./configure
make
make check
sudo make install
Hope this helps...
No comments:
Post a Comment