Page 1 of 1

[SOLVED/IGNORE/DELETE] How to revert to qbittorrent v.3.0.6

Posted: Mon Mar 11, 2013 1:18 pm
by silvernightstar
I would like to revert back to qbittorrent-nox 3.0.6. I'm thinking of doing the following, as described in
https://github.com/qbittorrent/qBittorr ... ompilation

Any problems with this method? Or is there a quicker/better way of downgrading? Thanks!

0. Remove qbittorrent-nox 3.0.8
sudo apt-get --purge remove qbittorrent-nox

1. General build dependencies
sudo apt-get install build-essential libtool automake autoconf subversion

2. Boost and SSL libraries
sudo apt-get install libboost-date-time-dev libboost-dev libboost-filesystem-dev \
libboost-iostreams-dev libboost-program-options-dev libboost-regex-dev \
libboost-serialization-dev libboost-signals-dev libboost-test-dev \
libboost-thread-dev libssl-dev

3. Qt4 libraries
sudo apt-get install libqt4-dev

4. Python (Run time only dependency, for the search engine)
sudo apt-get install python

5. Libtorrent
svn co https://libtorrent.svn.sourceforge.net/ ... s/RC_0_16/ libtorrent
cd libtorrent
./autotool.sh
./configure --disable-debug --prefix=/usr && make clean && make
sudo make uninstall
sudo make install-strip

6. Install qbittorrent-nox 3.0.6
Download v3.0.6 as zip file from https://github.com/qbittorrent/qBittorr ... ease-3.0.6 and unpack
cd qBittorrent
./configure --prefix=/usr --disable-gui
sudo make
sudo make install

Re: How to revert to qbittorrent v.3.0.6

Posted: Mon Mar 11, 2013 2:54 pm
by silvernightstar
Was able to downgrade to v3.06 successfully using above steps