-
우분투 SVN 설치 ( tar.gz )Linux 2019. 8. 12. 13:37
1. Apache / Svn 설치 시 기본으로 설치해야하는 내역
sudo apt-get install unzip
sudo apt-get install install gcc gcc-c++
sudo apt-get install gcc gcc-c++
sudo apt-get install gcc
sudo apt-get install g++
sudo apt-get install libtool-bin
sudo apt-get install libtool-bin
sudo apt-get install libgtk2.0-dev
sudo apt-get install libexpat1-dev2. apr / apr-util / pcre
[apr]
1. ./configure --prefix=/usr/local/apr
2. make & make install[apr-util]
1. ./configure --with-apr=/usr/local/apr --prefix=/usr/local/apr-util
2. make & make install[pcre]
1. ./configure --prefix=/usr/local/pcre
2. make & make install#error rm: cannot remove `libtoolT': No such file or directory
로그가 떨어진다면, cp -arp libtool libtoolT 로 처리 된다고 한다.
[svn]
1. ./configure --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util
2. make & make install#error configure: error: Subversion requires SQLite
1. wget http://www.sqlite.org/sqlite-amalgamation-3.6.13.tar.gz
2. sudo mkdir -p /apps/svn/sqlite-amalgamation
3. sudo cp -r sqlite3.c /apps/svn/sqlite-amalgamation/
sqlite 설치 필요.. sqlite3.c 복사
하시다가, 폴더들이 정상적으로 생기지 않아 다음으로 넘어가지 못하신다면 make 와 make install을 각각 해주세요.
'Linux' 카테고리의 다른 글
Linux 기본 명령어 (0) 2019.09.04 CentOS svn 설치 (0) 2017.07.20 linux java -version 세팅 할때 (0) 2017.05.30 각각 OS 및 Application verser 확인 (0) 2017.05.29 리눅스 자원 정보 찾기 (CPU / CPU Core / 물리 CPU / CPU당 물리코어 수 / Memory ) (0) 2017.05.29