svn installation under linux
Advertisements
Related series:
jdk installation under linux
ant installation under linux
linux installation under redis
svn installation under linux
Svn version 1.6.1 installed
1. Download svn
Download: http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=260&expandFolder=74
Select subversion-1.6.1.tar.gz and subversion-deps-1.6.1.tar.gz
Copy the downloaded package to / usr / local / Under (random, and find a place like)
2. Installation
cd / usr / local /
tar zxvf subversion-1.6.1.tar.gz
tar zxvf subversion-deps-1.6.1.tar.gz # will automatically extract to subversion-1.6.1 under
cd subversion-1.6.1
According to some web information presentation, execute the following command to complete the installation
. / Configure
make
make install
But in the actual installation process will be, implementation of the. / Configure, depending on the configuration of the system will be different in different error, I am using a new installation of the system, the main configuration is as follows:
Desktop environment :GNOME Desktop environment Application : Graphics, graphical Internet , Editor Development : Only the choice of development tool Server : The World Wide Web server The base system :java ,X The window system, basic , Dial-up networking support, and management tools , System Tools . Language support : Chinese support
Then I put my error encountered and solutions as follows:
. / Configure
1 # # errors
configure: error: We require OpenSSL; try - with-openssl
Solution:
Error need to install openssl, so I installed a openssl, installation is as follows:
cd / usr / local
wget http://www.openssl.org/source/openssl-1.0.0a.tar.gz
tar-zxvf openssl-1.0.0a.tar.gz
cd openssl-1.0.0a
. / Config
. / Config-t
make depend
make
make test
make install
Installed in / usr / local generate a ssl directory under
Set environment variables, in the / etc / profile in the PATH to add the following:
PATH = / usr / local / ssl / bin: / sbin /: $ PATH: / usr / sbin
export PATH
ok, an error prompted a settlement.
Re-run. / Configure
2 # # errors
configure: error: subversion requires zlib
Solution:
cd / usr / local
wget http://zlib.net/zlib-1.2.5.tar.gz
tar-xvzf zlib-1.2.5.tar.gz
cd zlib-1.2.5
. / Configure
make
make install
cd / usr / local
ln-s zlib-1.2.5 zlib
ok, error 2 solution.
Re-run. / Configure, success!
Then execute the following command:
make
make install
ok, svn installed.
3. Verification
svn - version
There may be prompted as follows:
svn: error while loading shared libraries: / usr/local/serf/lib/libserf-0.so.0: cannot restore segment prot after reloc: Permission denied
At this point you can solve the problem execute the following command:
setenforce permissive
Note: This is the permission configuration issue, on this part can refer to: http://blog.csdn.net/venoy4806/archive/2009/10/13/4665097.aspx
Re-implementation of svn - version
[root@localhost local]# svn --version svn, version 1.6.1 (r37116) compiled Jun 9 2010, 17:37:07 Copyright (C) 2000-2009 CollabNet. Subversion is open source software, see http://subversion.tigris.org/ This product includes software developed by CollabNet (http://www.Collab.Net/). The following repository access (RA) modules are available: * ra_neon : Module for accessing a repository via WebDAV protocol using Neon. - handles 'http' scheme * ra_svn : Module for accessing a repository using the svn network protocol. - handles 'svn' scheme * ra_local : Module for accessing a repository on local disk. - handles 'file' scheme * ra_serf : Module for accessing a repository via WebDAV protocol using serf. - handles 'http' scheme - handles 'https' scheme
ok, svn configured.
4. Postscript
Overall svn is a little complicated to install, easy to install I use the root user.
Also during the installation process may encounter the following error message:
configure: error: no suitable apr found and configure: error: Subversion requires SQLite
This is because not a member of subversion-deps-1.6.1.tar.gz reasons, subversion-deps-1.6.1.tar.gz includes the installation of some package svn is necessary, note the two versions to download unanimously.
Related Posts of svn installation under linux
-
Dynamic loading JS script four kinds of methods
To achieve dynamic loading JS script has four kinds of methods: 1, direct document.write <script language="javascript"> document.write ( "<script src='test.js'> <\ / script>"); </ script> 2, dynamic scri
-
Hibernate primary key strategy-sequence
Today, the use of hibernate in the company encountered a troublesome problem, the use of hibernate when the primary key generation strategy set sequence, but always reported in the implementation could not get next sequence value of the error, then o ...
-
Hibernate pessimistic locking mechanism for locking and optimistic locking
hibernate lock mechanism 1. Pessimistic lock It refers to the modification of data by outsiders hold a conservative attitude. The assumption that at any time access to data, may also have another client to access the same data, in order to maintain t ...
-
Oracle instant clent for ruby / rails on cygwin
Environment: XP: oracle full client, ruby, rails, gem cygwin: ruby rails, gem (the version with the XP version) Needs: for cygwin is installed under the rails platform support oci Steps: <1> download oracle instant client (10.2.0.3 Instant Client Pa
-
Nan-Jing 5: When IBatis.Hibernate mixed affairs, pay attention to your SQL
[Problem] Now, in the development of the so-called multi-storey JavaEE applications, data persistence layer is always essential, and "Automatic" of ORM - Hibernate, and "all-manual-type" of SqlMap - IBatis, equivalent data are Per ...
-
hibernate to use the principle of
The use of hibernate, implementation of data persistence. Has the following several processes. One configuration database connection information. Hibernate.config 2 configuration mapping. 3 use: the use of the process are the following steps: 3.1: Ge ...
-
can not be represented as java.sql.Timestamp
Development of procedures for the use of hibernate when, some time there is no need to fill in the fields, but after the hibernate query time reported "Java.sql.SQLException: Value'0000-00-00 'can not be represented as java.sql.Timestamp ...
-
Struts2 + hibernate + spring problem user log in
dao layer services layer action jsp <tr> <td align="center"> <b> user name: </ b> </ td> <td> <s: textfield name = "czyNumber" cssClass = "textstyle" theme = "simple" size = &q
-
Based on JDBC, JPA Annotation achieve simple CRUD Generic Dao
The origin of ideas are pretty long history of reasons: [Use iBATIS history] The use of iBATIS has been a long time, the system is to use the CRUD template tool to generate the code, although there are tools to generate, but looked at a lot of CRUD the Sq
-
Hibernate's lazy strategy
hibernate Lazy strategy can be used in: <class> tag, it can be true / false Tags can <PROPERTY> values true / false type of necessary tools to enhance <set> <list> can tag values true / false / extra <many-to-one> <on ...












