LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Hello! Please!! how can I install a tar.gz software on Mandriva Linux? (https://www.linuxquestions.org/questions/linux-newbie-8/hello-please-how-can-i-install-a-tar-gz-software-on-mandriva-linux-659219/)

douglasrj21 07-30-2008 05:28 AM

Hello! Please!! how can I install a tar.gz software on Mandriva Linux?
 
Hi!
I downloaded one program in this link, but I don't know how to install it!
http://linux.softpedia.com/progDownl...oad-12812.html
I downloaded the tar.gz... How can I get it working?
Thanks!

billymayday 07-30-2008 05:37 AM

The standard way id to download to, say, /usr/src. Then from there:

$ tar xvf mandvd-2.5-4.fc9.tar.gz

This probably untars into a directory /usr/src/mandvd-2.5-4

$ cd mandvd-2.5-4

Read any README and INSTALL type files

then, subject to what was in those

./configure
make
make install (only if the previous steps works, ans must be root)

Note that there's a pretty good chance that there'll be dependency issues that will kill things during configure or make, but we can work on them is/as they happen

BittaBrotha 07-30-2008 05:38 AM

In a terminal window make a new directory for the extracted files.

Then type gunzip -c filename.tar.gz | tar xopf -

When the files are extracted, run this command: ./mandvd.

That should do it.

billymayday 07-30-2008 05:46 AM

Actually, looks like it untars to mandvd-2.5

Also, reading the INSTALL file, you don't use the ./configure stage

billymayday 07-30-2008 05:50 AM

Quote:

Originally Posted by BittaBrotha (Post 3230778)

When the files are extracted, run this command: ./mandvd.

That should do it.

What makes you think this would work?

douglasrj21 07-30-2008 06:05 AM

Thank you guys...
Billy, I get into the folder, and when I run the make command, it says:
Bash: ./mandvd: No such file or directory
What's going wrong?

billymayday 07-30-2008 06:11 AM

That doesn't sound quite right. Can you post the command and all output pls

douglasrj21 07-30-2008 06:15 AM

Sure...

[root@localhost mandvd-2.5]# make
bash: make: command not found
[root@localhost mandvd-2.5]#

Does this help?
Thank you

billymayday 07-30-2008 06:21 AM

That's better. I don't use Mandriva, so no guarantees.

You'll need to install make, I guess you can use Mandriva's package manage for that. I suspect you'll need a package called qt-devel as well.

I'm about to drop offline though

douglasrj21 07-30-2008 09:03 PM

Hi...
Billy mayday, I installed Make on mandriva package manage, but I didn't find qt-devel there, I only found packages named libdbus-qt-devel and others, I don't know which one I have to install...

Now when I run make command it shows me this message:

[root@localhost mandvd-2.5]# make
make: *** No rule to make target `/usr/lib64/qt-3.3/mkspecs/default/qmake.conf', needed by `Makefile'. Stop.
[root@localhost mandvd-2.5]#

Does someone know What this means?
Thanks!

billymayday 07-30-2008 11:17 PM

qmake was what I though was in qt-devel. See this link (although a little old) that gives some hints on where to find/get it

http://www.techsupportforum.com/alte...ndrake-qt.html

Maybe the mandriva package is called qt-dev


All times are GMT -5. The time now is 08:19 PM.