导航:首页 > 净水问答 > tar过滤svn

tar过滤svn

发布时间:2025-01-14 02:29:56

❶ Linux中编译安装Subversion(SVN)客户端的教程

Subversion(简称svn)是近年来崛起的版本管理软件系统,是cvs的接班人。目前,绝大多数开源软件都使用svn作为代码版本管理软件。
Subversion是一个版本控制系统,相对于的RCS、CVS,采用了分支管理系统,它的设计目标就是取代CVS。互联网上免费的版本控制服务多基于Subversion。
Subversion的版本库可以通过网络访问,从而使用户可以在不同的电脑上进行操作。从某种程度上来说,允许用户在各自的空间里修改和管理同一组数据可以促进团队协作。因为修改不再是单线进行(单线进行也就是必须一个一个进行),开发进度会进展迅速。此外,由于所有的工作都已版本化,也就不必担心由于错误的更改而影响软件质量如果出现不正确的更改,只要撤销那一次更改操作即可。某些版本控制系统本身也是软件配置管理系统(SCM),这种系统经过精巧的设计,专门用来管理源代码树,并且具备许多与软件开发有关的特性比如,对编程语言的支持,或者提供程序构建工具。不过Subversion并不是这样的系统。它是一个通用系统,可以管理任何类型的文件集。

Subversion 1.8中http客户端基于neon已经被移除,改用self。如果要支持http方式需要在安装svn前安装serf,安装serf推荐用serf-1.2.1,安装是./configure;serf-1.3.0安装是用scons(yum -y install scons)方式,安装serf-1.3.0后安装可能会报误,Google没找到解决方法,如下报错
checking for serf-2 library... no
checking for serf-1 library... no
checking was serf enabled... no

An appropriate version of serf could not be found, so libsvn_ra_serf
will not be built. If you want to build libsvn_ra_serf, please
install serf 1.2.1 or newer.

configure: error: Serf was explicitly enabled but an appropriate version was not found.

安装步骤:
(本文只基于LAMP一键安装包环境部署好之后进行)
1. 安装apr、apr-unit

复制代码

代码如下:

cd /root/lamp/source
#wget http://archive.apache.org/dist/apr/apr-1.4.8.tar.gz #LAMP中已经下载
#wget http://archive.apache.org/dist/apr/apr-util-1.5.2.tar.gz
tar xzf apr-1.4.8.tar.gz
cd apr-1.4.8
./configure --prefix=/usr/local/apache
make make install
cd ../
tar xzf apr-util-1.5.2.tar.gz
cd apr-util-1.5.2
./configure --prefix=/usr/local/apache
make make install
cd ../

2. 安装serf-1.2.1

复制代码

代码如下:

yum -y install expat-devel
wget http://serf.googlecode.com/files/serf-1.2.1.tar.bz2 #serf-1.2.1.zip是win版有问题
tar xjf serf-1.2.1.tar.bz2
cd serf-1.2.1
./configure --prefix=/usr/local/serf --with-apr=/usr/local/apache --with-apr-util=/usr/local/apache
make make install
cd ..

3. 安装svn

复制代码

代码如下:

tar xzf subversion-1.8.1.tar.gz
cd subversion-1.8.1
./get-deps.sh
./configure --prefix=/usr/local/subversion --with-apxs=/usr/local/apache/bin/apxs
--with-apr=/usr/local/apache --with-apr-util=/usr/local/apache --with-zlib
--with-openssl --enable-maintainer-mode --with-serf=/usr/local/serf --enable-mod-activation
make make install
cd ..

4. 检查是否安装成功
安装成功会在/usr/local/apache/conf/httpd.conf自己加入下面2行

复制代码

代码如下:

LoadMole dav_svn_mole /usr/local/subversion/libexec/mod_dav_svn.so
LoadMole authz_svn_mole /usr/local/subversion/libexec/mod_authz_svn.so

检查svn是否支持http方式:

复制代码

代码如下:

# svn --version

svn, version 1.8.1 (r1503906)
compiled Aug 2 2013, 11:36:48 on x86_64-unknown-linux-gnu

Copyright (C) 2013 The Apache Software Foundation.
This software consists of contributions made by many people;
see the NOTICE file for more information.
Subversion is open source software, see http://subversion.apache.org/

The following repository access (RA) moles are available:

* ra_svn : Mole for accessing a repository using the svn network protocol.
- with Cyrus SASL authentication
- handles 'svn' scheme
* ra_local : Mole for accessing a repository on local disk.
- handles 'file' scheme
* ra_serf : Mole for accessing a repository via WebDAV protocol using serf.
- handles 'http' scheme
- handles 'https' scheme

阅读全文

与tar过滤svn相关的资料

热点内容
吉林净水器滤芯是什么材料 浏览:694
电热水器为什么会有很多污水 浏览:349
日本投放核污水后我们该怎么办 浏览:337
污水管道分部 浏览:406
广州印染厂过滤芯哪里有 浏览:318
树脂能被消化吗 浏览:269
传奇过滤出现问号 浏览:86
污水总氮最低能降到多少 浏览:607
污水浇地是什么 浏览:325
4040反渗透膜批发 浏览:915
除甲醛的净化器原理是什么 浏览:512
德国提升器 浏览:539
戒奶用吃回奶药么 浏览:310
长沙废水处理费用多少 浏览:741
背过滤海缸过滤棉怎么清洗 浏览:363
有机废水加的营养液是什么 浏览:223
小佩智能饮水机声音响什么原因 浏览:977
怡口净水器怎么样好吗 浏览:941
玻璃钢污水净化槽一立方多少钱 浏览:820
ph值控制措施减少水垢 浏览:532