install-transmissionbt-centos6
no way to compare when less than two revisions
Differences
This shows you the differences between two versions of the page.
| — | install-transmissionbt-centos6 [2013-11-22 09:10:12] (current) – created shaun.reitan | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== How to install Transmission daemon and client on CentOS6 ====== | ||
| + | |||
| + | There are two ways to install Transmission on CentOS6. The first method is very simple and uses the RPM from the EPEL repository. | ||
| + | |||
| + | ===== Installing from EPEL ===== | ||
| + | |||
| + | For more information about what EPEL is go to [[http:// | ||
| + | |||
| + | <code console> | ||
| + | rpm -ivh http:// | ||
| + | yum -y upgrade | ||
| + | yum -y install transmission transmission-daemon | ||
| + | service transmission start | ||
| + | </ | ||
| + | |||
| + | |||
| + | ===== Building from source ===== | ||
| + | |||
| + | Ensuring we have the required RPMS installed | ||
| + | <code console> | ||
| + | yum install gcc make openssl-devel curl-devel intltool gcc-c++ m4 automake libtool gettext | ||
| + | </ | ||
| + | |||
| + | Building the required libevent API | ||
| + | <code console> | ||
| + | cd /usr/src | ||
| + | wget https:// | ||
| + | tar zxvf libevent-2.0.21-stable.tar.gz | ||
| + | cd libevent-2.0.21-stable | ||
| + | ./configure --prefix=/ | ||
| + | make | ||
| + | make install | ||
| + | </ | ||
| + | |||
| + | Building Transmission | ||
| + | <code console> | ||
| + | cd /usr/src | ||
| + | wget http:// | ||
| + | tar xvf transmission-2.82.tar.xz | ||
| + | cd transmission-2.82 | ||
| + | export PKG_CONFIG_PATH=/ | ||
| + | ./configure --prefix=/ | ||
| + | make | ||
| + | make install | ||
| + | </ | ||
| + | |||
install-transmissionbt-centos6.txt · Last modified: by shaun.reitan
