一直想找一个源可以使用 yum 或 apt-get 来快速安装subversion,找了好久,这次终于找到了,是 wandisco.com 提供的源,下面进行安装设置。
Centos 6:
在 /etc/yum.repos.d/ 创建源文件 wandisco-svn1.8.repo
[WANdisco]
name=WANdisco SVN Repo 1.8
enabled=1
baseurl=http://opensource.wandisco.com/rhel/6/svn-1.8/RPMS/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-WANdisco
然后导入GPG-KEY
wget http://opensource.wandisco.com/RPM-GPG-KEY-WANdisco
rpm --import RPM-GPG-KEY-WANdisco
再进行安装:
yum update
yum -y install subversion
Debian 7 (Wheezy):
在 /etc/apt/sources.list.d/ 目录下,创建文件 wandisco-svn1.8.list
vi /etc/apt/sources.list.d/wandisco-svn1.8.list
# 加入内容:
deb http://opensource.wandisco.com/debian wheezy svn18
导入GPG-KEY:
wget http://opensource.wandisco.com/wandisco-debian.gpg
apt-key add wandisco-debian.gpg
安装:
apt-get update
apt-get -y install subversion
是不是很方便呢,到了这里关于yum apt-get安装subversion 1.8方法也就介绍完了,大家试一下吧.