qbittorrent-3.2.0 in Ubuntu 11.10

Linux specific questions, problems.
Post Reply
neuron

qbittorrent-3.2.0 in Ubuntu 11.10

Post by neuron »

Hi,

Great software and since I research in many computers ... this one is a challenge.

I have this computer with 11.10 ... because if I upgrade Ubuntu ... no video.

And with qbitt. <= 3.1.2  all versions compile ok and work great!!!!!!



The O.S.
lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 11.10
Release: 11.10
Codename: oneiric

The software:
qbittorrent-3.2.0.tar.xz
libtorrent-rasterbar-1.0.4.tar.gz
Boost 1.46.1

Qt is
qmake -v
QMake version 2.01a
Using Qt version 4.7.4 in /usr/lib/x86_64-linux-gnu


So I installed in a dir.

bin/qmake -v
QMake version 2.01a
Using Qt version 4.8.6 in /qtttttttttttttt/lib

/qtttttttttttttt/bin/qtdemo work all the demos.



In qbittorrent-3.2.0

./configure
...........
checking whether to enable the WebUI... yes
checking whether Qt5 should be enabled... no
checking for /qmake... no
checking for /qmake-qt4... no
checking for Qt4 qmake >= 4.8.0... not found
configure: error: Could not find qmake

I changed
            ./configure QT_QMAKE=/qtttttttttttttt/bin
.........
checking whether Qt5 should be enabled... no
checking for /qtttttttttttttt/bin/qmake... yes
checking for Qt4 qmake >= 4.8.0... /qtttttttttttttt/bin/qmake
checking whether QtDBus should be enabled... yes
checking for QtDBus >= 4.8.0... not found
configure: error: Could not find QtDBus

Why?



./configure QT_QMAKE=/qtttttttttttttt/bin --disable-qt-dbus
...
checking whether Qt5 should be enabled... no
checking for /qtttttttttttttt/bin/qmake... yes
checking for Qt4 qmake >= 4.8.0... /qtttttttttttttt/bin/qmake
checking whether QtDBus should be enabled... no
checking for boostlib >= 1.35... yes
...

And "make" work ...

But when 

src/qbittorrent -v
src/qbittorrent: error while loading shared libraries: libtorrent-rasterbar.so.8: cannot open shared object file: No such file or directory


Please your comments.

Thanks in advance,

Neuron
ciaobaby

Re: qbittorrent-3.2.0 in Ubuntu 11.10

Post by ciaobaby »

src/qbittorrent -v
src/qbittorrent: error while loading shared libraries: libtorrent-rasterbar.so.8: cannot open shared object file: No such file or directory
Ditto on that problem for Mint 16.

Installing using apt-get with qbittorrent-team PPAs has no such problem. (libtorrent 16.13 showing in libraries)

PPAs are
Stable: https://launchpad.net/~qbittorrent-team ... ent-stable
Unstable: https://launchpad.net/~qbittorrent-team ... t-unstable
neuron

Re: qbittorrent-3.2.0 in Ubuntu 11.10

Post by neuron »

ciaobaby wrote:
src/qbittorrent -v
src/qbittorrent: error while loading shared libraries: libtorrent-rasterbar.so.8: cannot open shared object file: No such file or directory
Ditto on that problem for Mint 16.

Installing using apt-get with qbittorrent-team PPAs has no such problem. (libtorrent 16.13 showing in libraries)

PPAs are
Stable: https://launchpad.net/~qbittorrent-team ... ent-stable
Unstable: https://launchpad.net/~qbittorrent-team ... t-unstable
Thank you for your quick answer.

Yessssssss  I know I can use the ppa ...

But I prefer ... compile ... and libtorrent 0.16.13
Now is 1.0.4



This is strange ...

In "make":

g++ use
-I/usr/local/include/libtorrent

-I/qtttttttttttttt/include/QtGui
-I/qtttttttttttttt/include/QtNetwork
-I/qtttttttttttttt/include/QtCore
-I/qtttttttttttttt/include/QtXml

Whats the problem with
                                checking whether QtDBus should be enabled... yes
                                checking for QtDBus >= 4.8.0... not found
                                configure: error: Could not find QtDBus


make use QtGui, QtNetwork, QtCore, QtXml ...
and miss QtDBus ...?

Regards,
Neuron
bjames88

Re: qbittorrent-3.2.0 in Ubuntu 11.10

Post by bjames88 »

I was having the same issue and I found this forum post:

index.php/topic,3365.msg16414.html#msg16414

I apt-get install libqt4-dev and that solved my compile issue.

Hope this helps!
neuron

Re: qbittorrent-3.2.0 in Ubuntu 11.10

Post by neuron »

[quote="neuron"]
checking for Qt4 qmake >= 4.8.0... not found
configure: error: Could not find qmake

.........
checking whether QtDBus should be enabled... yes
checking for QtDBus >= 4.8.0... not found
configure: error: Could not find QtDBus
[/quote]

It works!!! ...

"libtorrent-rasterbar-0.16.17.tar.gz" compile and run.

The app don't use my fonts and my theme from Ubuntu ...
Why?

Small letters ... :-( :-( :-(









- libtorrent-rasterbar-1.0.4          and          libtorrent-rasterbar-1.0.1

Compile but

src/qbittorrent -v
src/qbittorrent: error while loading shared libraries: libtorrent-rasterbar.so.8: cannot open shared object file: No such file or directory

        ldconfig -p | grep torrent
                libtorrent-rasterbar.so.7 (libc6,x86-64) => /usr/local/lib/libtorrent-rasterbar.so.7
                libtorrent-rasterbar.so (libc6,x86-64) => /usr/local/lib/libtorrent-rasterbar.so

        ldd src/qbittorrent
                        linux-vdso.so.1 =>  (0x00007fff2e75f000)
                        libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007f6d4a109000)
                        libtorrent-rasterbar.so.8 => not found
                                ...



I don't have libtorrent-rasterbar.so.8                  =>          /usr/local/lib/       

Solution                "ln -s" in one lib        ex.  /lib/x86_64-linux-gnu/ or /usr/lib/x86_64-linux-gnu/

When we configure and compile .... he don't create an entry to /usr/local/lib ....?
Very w.



I have all source code - Qt, libtorrent and qbittorrent, ... !!!

Thanks in advance,

Neuron
Last edited by neuron on Mon Jun 01, 2015 1:40 am, edited 1 time in total.
neuron

Re: qbittorrent-3.2.0 in Ubuntu 11.10

Post by neuron »

[quote="neuron"]
- libtorrent-rasterbar-1.0.4          and          libtorrent-rasterbar-1.0.1
[/quote]

And libtorrent-rasterbar 1.0.5 is working too :-) :-) :-)



Can you explain the app don't use my fonts and my theme from Ubuntu ... ?
Why?

Small letters ... :-( :-( :-(


And qbit. store the Applications icons in ... ???

I saw only /usr/local/share/icons/hicolor/XXxXX/apps/


Thanks in advance,
Neuron
Post Reply