Last active
December 30, 2015 16:09
-
-
Save TheWaWaR/7852823 to your computer and use it in GitHub Desktop.
Install Linux Command Line BitTorrent client in CentOS 6.4.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
server os unknown