您的位置:首页 > 其它

ubuntu 12.04 通过apt-get 安装subversion 1.8

2014-06-24 16:09 218 查看
转载地址 http://sharadchhetri.com/2014/02/05/install-subversion-1-8-on-ubuntu-using-apt/
n this tutorial,we will install subversion 1.8 on Ubuntu using apt.We have done this practical in Ubuntu 13.04 and 13.10 version.Generally when you install subversion by using command
apt-get
install subversion
,it will install the subversion 1.7 .Here we will add the new apt source list for subversion 1.8 .

Description:

Operating System : Ubuntu 13.04,13.10,12.10 and 12.04 LTS

Package Name : Subversion 1.8


To install subversion 1.8 in Ubuntu,follow the given below steps

Step 1: Open the terminal and use below given command to add subversion repo in new filesubversion18.list at path /etc/apt/sources.list.d.
sudo sh -c 'echo "deb http://opensource.wandisco.com/ubuntu precise svn18" >> /etc/apt/sources.list.d/subversion18.list'
sudo wget -q http://opensource.wandisco.com/wandisco-debian.gpg -O- | sudo apt-key add -
sudo apt-get update


Step 2 : Now install the subversion
1.8 version after checking in apt-cache

sudo apt-cache show subversion | grep '^Version:'


Below given is the reference from our system

linux@tuxworld:~$ sudo apt-cache show subversion | grep ‘^Version:’

Version: 1.8.5-1+WANdisco

Version: 1.7.5-1ubuntu2.1

Version: 1.7.5-1ubuntu2

linux@tuxworld:~$

Now install subversion by below given command
sudo apt-get install subversion
Step 3: Now verify
the subversion
sudo dpkg -l|grep subversion

svn --version
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: