Welcome To NetTech Solutions

Warm Welcome to Every Visitor. Here we serve best technical support, all the posts here you find will help you solving and facing the day to day problems.
Every one is welcome to comment on our Posts.

Thursday, March 6, 2014

Updating SVN clinet in Linux (Centos)

Updating SVN subversion client 1.6 to 1.7 in Linux (Centos).

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: