LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - General (https://www.linuxquestions.org/questions/linux-general-1/)
-   -   MythTv (https://www.linuxquestions.org/questions/linux-general-1/mythtv-255253/)

jobless_joe 11-15-2004 04:23 PM

MythTv
 
can someone guide me through installing MythTV...ive gone through everything in the manual, and it doesnt work. after installing all the other dependencies, and doing "make install," the whole screen scrolls with errors. can someone make a real tutorial on installing this?

Pcghost 11-19-2004 09:09 AM

I am working on it. I installed ivtv last night and will be doing the MythTV install tomorrow. What distribution are you using? Do you already have your capture card working? Does cat /dev/video > my.mpg create a video file? What is the error you are getting?

A little more info and I am sure myself or someone else can figure out where you are stuck..

jobless_joe 11-23-2004 02:30 PM

Ok, when i type in make, it says a bunch of junk, followed by this error:

/usr/bin/ld: cannot find -lqt-mt
collect2: ld returned 1 exit status
make[4]: *** [libmythavcodec-0.16.so.0.16.0] Error 1
make[4]: Leaving directory `/root/qtttt/qt-x11-free-3.3.3/qmake/libs/libavcodec'make[3]: *** [sub-libavcodec] Error 2
make[3]: Leaving directory `/root/qtttt/qt-x11-free-3.3.3/qmake/libs'
make[2]: *** [sub-libs] Error 2
make[2]: Leaving directory `/root/qtttt/qt-x11-free-3.3.3/qmake'
make[1]: *** [src-qmake] Error 2
make[1]: Leaving directory `/root/qtttt/qt-x11-free-3.3.3'
make: *** [init] Error 2


Whats the problem? how do i fix it?

jobless_joe 11-23-2004 06:55 PM

anyone?

Tinkster 11-23-2004 07:00 PM

First of all, please don't BUMP your thread before 24 hours
without a comment have passed ... it's against the rules

To answer your question:

You don't have the multi-threading library for
Qt installed ... or at least not in a place where
your linker can see it.


Cheers,
Tink

jobless_joe 11-23-2004 10:23 PM

Sorry bout the BUMP, just a bit frustrated. Heres what I did with QT. went to the site, downloaded qt-x11-free-3.3.3.tar.gz. gunzipped, and untarred it, did ./config, then make, then make install. After that, i was able to make the makefile for mythtv. im not sure where I went wrong, any ideas? ill be patient this time (sorry, i tend to not read the rules):tisk:

jobless_joe 11-25-2004 11:02 AM

now i bump.

Tinkster 11-25-2004 11:25 AM

I don't understand why you bump, though :)

To me it looks as if the problem was solved,
or am I reading you incorrectly?


Cheers,
Tink

jobless_joe 11-25-2004 09:46 PM

Hmm...maybe i should have listed in the newb section...frankly, im not sure what to do. if im missing a library, how do i know what to get, and where to find it? if i have it, how do i make this link?

Tinkster 11-25-2004 10:38 PM

Quote:

Originally posted by jobless_joe
Hmm...maybe i should have listed in the newb section...
I still wouldn't have known why you bumped - you
said it worked?

Quote:

frankly, im not sure what to do. if im missing a library, how do i know what to get, and where to find it?
It tells you the name ... prepend that with lib
and search on google.com/linux ...

In your example:
Code:

/usr/bin/ld: cannot find -lqt-mt
you'd strip the -l and prepend it with lib, getting
libqt-mt ...

http://www.google.com/linux?hl=en&q=...a=lr%3Dlang_en
If you're using a particular distro you may want to
include the name, if you want to compile from source
add the word source or src or tar.gz or tar.bz2 to your
search... you get the idea.

Quote:

if i have it, how do i make this link?
How do you make what link?


Cheers,
Tink

jobless_joe 11-27-2004 10:01 PM

Quote:

Heres what I did with QT. went to the site, downloaded qt-x11-free-3.3.3.tar.gz. gunzipped, and untarred it, did ./config, then make, then make install
what i ment to say was after typing make in the mythtv directory, it gave me the error...

Code:

/usr/bin/ld: cannot find -lqt-mt
collect2: ld returned 1 exit status
make[4]: *** [libmythavcodec-0.16.so.0.16.0] Error 1
make[4]: Leaving directory `/root/qtttt/qt-x11-free-3.3.3/qmake/libs/libavcodec'make[3]: *** [sub-libavcodec] Error 2
make[3]: Leaving directory `/root/qtttt/qt-x11-free-3.3.3/qmake/libs'
make[2]: *** [sub-libs] Error 2
make[2]: Leaving directory `/root/qtttt/qt-x11-free-3.3.3/qmake'
make[1]: *** [src-qmake] Error 2
make[1]: Leaving directory `/root/qtttt/qt-x11-free-3.3.3'
make: *** [init] Error 2


the problem I have now, is that when I type rpm -i qt-3.3.2-2.sh4.rpm, it gives
Code:

        package qt-3.3.2-2 is intended for a sh4 architecture
        package qt-3.3.3-8 (which is newer than qt-3.3.2-2) is already installed        file /usr/lib/qt-3.3/lib/libqt-mt.so.3 from install of qt-3.3.2-2 conflicts with file from package qt-3.3.3-8
        file /usr/lib/qt-3.3/lib/libqt-mt.so.3.3 from install of qt-3.3.2-2 conflicts with file from package qt-3.3.3-8
        file /usr/lib/qt-3.3/lib/libqui.so.1.0.0 from install of qt-3.3.2-2 conflicts with file from package qt-3.3.3-8

but when i type rpm -U qt-3.3.2-2.sh4.rpm, it gives me

Code:

        package qt-3.3.2-2 is intended for a sh4 architecture
        package qt-3.3.3-8 (which is newer than qt-3.3.2-2) is already installed

How do i "uninstall" my previous install of QT? when I originally installed QT, i used qt-x11-free-3.3.3.tar.gz.

Thanks

jobless_joe 11-29-2004 04:09 PM

Simply put, i need to uninstall something i installed with a configure script. How do I do it?

wetodit 12-01-2004 08:19 AM

MythTV guide
 
This guide is the best reference to MythTV. I was able to follow it and have my system running mythtv in just a few hours.
I hope this helps you all.
-wetodit

Jarod's Guide

digitalb0y 12-18-2004 09:41 PM

check out http://mythtv.info It's a wiki that gives the many aspects of mythtv
Gives info on how to install Mythtv on over 10 linux distributions
http://mythtv.info/moin.cgi/LinuxDistros


All times are GMT -5. The time now is 04:41 AM.