There is a known issue in rtorrent/libtorrent on multiple linux distros where you receive a "Tracker Timed Out" error for any torrent you try to start. This is caused due to curl not being compiled with c-ares enabled.
To fix this, you need to download and compile c-ares, and then recompile curl with the "--enable-ares" option and then recompile libtorrent and rtorrent.
c-ares
curlCode:wget http://c-ares.haxx.se/c-ares-1.6.0.tar.gz tar -zxvf c-ares-1.6.0.tar.gz cd c-ares-1.6.0 ./configure make make install
libtorrent and rtorrentCode:wget http://curl.haxx.se/download/curl-7.19.5.tar.gz tar -zxvf curl-7.19.5.tar.gz cd curl-7.19.5 ./configure --enable-ares make make install
Now start up rtorrent and you shouldn't see this error anymore.Code:wget http://libtorrent.rakshasa.no/downloads/libtorrent-0.12.5.tar.gz wget http://libtorrent.rakshasa.no/downloads/rtorrent-0.8.5.tar.gz tar -zxvf libtorrent-0.12.5.tar.gz cd libtorrent-0.12.5.tar.gz ./configure make make install tar -zxvf rtorrent-0.8.5.tar.gz cd rtorrent-0.8.5 ./configure --with-xmlrpc-c make make install









LinkBack URL
About LinkBacks
Reply With Quote

