Skip to content

Instantly share code, notes, and snippets.

@TheWaWaR
Last active December 30, 2015 16:09
Show Gist options
  • Save TheWaWaR/7852823 to your computer and use it in GitHub Desktop.
Save TheWaWaR/7852823 to your computer and use it in GitHub Desktop.
Install Linux Command Line BitTorrent client in CentOS 6.4.
# 1. Install the dependencies
yum install gcc-c++ libsigc++20-devel
# 2. Install libTorrent
wget http://libtorrent.rakshasa.no/downloads/libtorrent-0.13.3.tar.gz
./configure --prefix=$HOME/local && make && make install
# 3. Install the client
wget http://libtorrent.rakshasa.no/downloads/rtorrent-0.9.3.tar.gz
export PKG_CONFIG_PATH=$HOME/local/lib/pkgconfig
./configure --prefix=$HOME/local && make && make install
@m4sturcheef
Copy link

server os unknown

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment