본문 바로가기

Linux/Centos

Centos에 libTorrent and rTorrent 설치하기

설정하러 바로 가기 rTorrent 설정하기 (rtorrent.rc) 
자동 스크립트 CentOS 부팅시 rTorrent 자동 시작하기


이 글의 설치방법은 소스를 받아 컴파일합니다.




그럼 설치 및 컴파일에 필요한 툴 먼저 설치토록 하겠습니다.
기본적으로 모든 작업은 root로 진행합니다. su -
 

# yum -y install gcc gcc-c++ m4 make automake libtool pkgconfig perl openssl-devel ncurses-devel

설치를 완료 했으면 작업할 폴더를 정해야 하는데 저는 /usr/local/src 폴더에서 하겠습니다.

libtorrent와 rtorrent 설치를 위해 curl, libsigc++ 먼저 받아 컴파일 하도록 하겠습니다.

순서는 curl -> libsigc++ ->  libtorrent -> rtorrent 입니다.

curl

# cd /usr/local/src
# wget http://curl.haxx.se/download/curl-7.19.7.tar.gz
# tar -xvzf curl-7.19.7.tar.gz
# cd curl-7.19.7
# ./configure
# make
# make install

libsigc++

# cd /usr/local/src
# wget http://ftp.gnome.org/pub/GNOME/sources/libsigc++/2.2/libsigc++-2.2.4.2.tar.gz
# tar -xvzf libsigc++-2.2.4.2.tar.gz
# cd libsigc++-2.2.4.2
# ./configure
# make
# make install


libtorrent

# cd /usr/local/src
# wget http://libtorrent.rakshasa.no/downloads/libtorrent-0.12.6.tar.gz
# tar -xvzf libtorrent-0.12.6.tar.gz
# export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
# cd libtorrent-0.12.6/
# rm -f scripts/{libtool,lt*}.m4
# ./autogen.sh
# ./configure
# make
# make install

rtorrent

# cd /usr/local/src
# wget http://libtorrent.rakshasa.no/downloads/rtorrent-0.8.6.tar.gz
# tar -xvzf rtorrent-0.8.6.tar.gz
# cd rtorrent-0.8.6
# rm -f scripts/{libtool,lt*}.m4
# ./autogen.sh
# ./configure
# make
# make install


여기까지 이상없이 따라 오셨다면 설치가 잘 된 것입니다.

추가적으로 screen을 설치하셔서 세션을 유지한 체 다른 작업을 하실수도 있습니다.

설정 작업은 별도로 포스팅 하겠습니다.


설정하러 바로 가기 rTorrent 설정하기 (rtorrent.rc) 
자동 스크립트 CentOS 부팅시 rTorrent 자동 시작하기


'Linux > Centos' 카테고리의 다른 글

LAMP 설치 (CentOS 5.4)  (0) 2010.01.15
CentOS 5.4 네트워크 설치  (0) 2010.01.14
CentOS 부팅시 rTorrent 자동 시작하기  (2) 2010.01.11
CentOS 5에 RPMforge repository 추가 (Yum)  (0) 2010.01.09