컴퓨터 이야기

centos 6.X 에서 트랜스미션 최신버전 설치.

느림의 미학 . 2015. 3. 18. 20:14

두 방식 모두 시작하기 전에 yum update로 최신버전으로 설치한다. 


우선 심플하게 자동화된 버전 


root계정에서 명령어 셋을 순서대로 한다 


# wget https://github.com/elijahpaul/install-transmission/raw/master/install-transmission.sh
# chmod u+x install-transmission.sh
# ./install-transmission.sh





수동으로 직접 설정하는 버전 


Step 01: Login using your super user account (root) as it is easy for me to work. Even if it is a non standard way to work :( . At first we are going to download the transmission 2.84 source code and a dependency of libevent 2.0.21 source code from internet. At the time of writing this was the updated codes I could find.

wget https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz

Step 02: Run the following commands in sequence to compile and install the library.

tar -xvf libevent-2.0.21-stable.tar.gz

cd libevent-2.0.21-stable

./configure

make

make install

Step 03: This step is only required for the 64 bit operating system.

ln -s /usr/local/lib/pkgconfig/libevent.pc /usr/lib64/pkgconfig/libevent.pc

Install Transmission

Step 01: Download the source code

wget https://transmission.cachefly.net/transmission-2.84.tar.xz

Step 02: Download and install the packages to which are required for transmission to work.

yum -y install gcc gcc-c++ m4 make automake libtool gettext openssl-devel libcurl-devel libevent-devel intltool gtk2-devel

Step 03: Again run the following command in sequence to compile and install the application.

tar -xvf transmission-2.84.tar.xz

cd transmission-2.84

./configure

make

make install

Step 04: To run the transmission you need to run the daemon.

transmission-daemon

Step 05: Now open you browser and point to

http://localhost:9091