information/programming & server2008. 3. 7. 15:41
rpm이나 apt-get을 통하여 설치할 수 없는 경우가 있다. 이럴 땐 직접 소스코드를 받아서 compile하여 설치
- http://subversion.tigris.org/servlets/ProjectDocumentList에서 Releases->Source code에서 원하는 버전을 선택
-
다운로드
-
압축 풀기
- tar xvfz subversion-1.4.6.tar.gz
- ./configure
- make
- make install
별 이상이 없다면 설치 완료.
svn --version 으로 확인하면
- svn, version 1.4.6 (r28521)
compiled Mar 7 2008, 15:34:06
Copyright (C) 2000-2007 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_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
과 같은 메시지를 확인할 수 있다.