LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Mandriva
User Name
Password
Mandriva This Forum is for the discussion of Mandriva (Mandrake) Linux.

Notices


Reply
  Search this Thread
Old 05-27-2004, 12:29 PM   #16
dolphans1
Senior Member
 
Registered: Jun 2003
Location: LoneStar
Distribution: Mandriva & Ubuntu
Posts: 1,041

Original Poster
Rep: Reputation: 35

I have done exactly as you described and I still get the message, unable to parse hdlist file, problem reading synthesis file of medium, it will be automatically disabled.

Also the Mandrake RPM software manager will not allow you to search for files outside those that are installed or that came with CD rom.

d-1


Quote:
Originally posted by MATJA_KAE_92
OK! I use Slovenian version of MDK, so the translation back to English may be strange, but I hope you will manage to follow.
Make a directory in your /home/user/ and name it RPM.
Move all your downloaded rpms into this new directory
In the Package manager (I guess it must be the English name) open something like source manager or similar.
Here you have option to add sources.
Chose add and in the new opened window check "local file"(guessing again) In the line name type "RPM" and in line "path" (guess) browse to /home/user/RPM. Click OK.
Now you will be able to install downloaded rpms from the control center.
Every time you download a new rpm into "RPM" directory, you must run update sources in package manager.

Penguin be with you!

Last edited by dolphans1; 05-27-2004 at 02:07 PM.
 
Old 05-27-2004, 12:31 PM   #17
vdogvictor
Member
 
Registered: Feb 2004
Distribution: Arch
Posts: 498

Rep: Reputation: 31
Quote:
Originally posted by dolphans1
Man I still can't figure it out. I extracted the file to my documents folder then I opened my xterm and typed in the following "tar -xvzf mozilla-i686-pc-linux-gnu-1.7rc-installer.tar.gz" (just as typed) and I get a cannot open message, no such file or directory.

d-1
You have to type that command while you are in the diriectory you saved it to. For instance type

cd /home
ls

if you saved it to /home the ls command will show all the files there...find the file for mozilla and make sure you have the file name right and those commands should work.

As for the rpm you have to do the same but use the rpm commands that the others told you about and the .rpm file. If that doesn't work I always install rpms the bad way with this command

rpm -i nameofrpm.rpm
 
Old 05-27-2004, 01:56 PM   #18
MATJA_KAE_92
Member
 
Registered: Jan 2004
Location: Slovenija
Distribution: Mandriva LE 2005
Posts: 54

Rep: Reputation: 15
Most programs can be be installed with this comands:
./configure
make
make install

but Mozilla and Netscape have their own way:

tar xzvf mozilla........tar.gz (or netscape.........tar.gz)

It creates a directory mozilla-installer (netscape-installer)
In this new directory you must run ./mozilla-installer (./netscape installer)

The rest runs by itself.
 
Old 05-27-2004, 02:10 PM   #19
dolphans1
Senior Member
 
Registered: Jun 2003
Location: LoneStar
Distribution: Mandriva & Ubuntu
Posts: 1,041

Original Poster
Rep: Reputation: 35
When you say to type cd/home ls do I type this in the xterm console or do you mean to istall into my directory when I am creating it?

Thanks,

d-1



Quote:
Originally posted by vdogvictor
You have to type that command while you are in the diriectory you saved it to. For instance type

cd /home
ls

if you saved it to /home the ls command will show all the files there...find the file for mozilla and make sure you have the file name right and those commands should work.

As for the rpm you have to do the same but use the rpm commands that the others told you about and the .rpm file. If that doesn't work I always install rpms the bad way with this command

rpm -i nameofrpm.rpm
 
Old 05-27-2004, 04:38 PM   #20
vdogvictor
Member
 
Registered: Feb 2004
Distribution: Arch
Posts: 498

Rep: Reputation: 31
in the xterm type

cd /the/path/to/where/I/saved/mozilla

it is case sensitive.
 
Old 05-27-2004, 05:13 PM   #21
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
One method of installing a downloaded rpm file is to use the urpmi command. You need to su to root first. Then cd to the directory with the rpm file you want to install.
type:
urpmi <full-filename-of-rpm-file>

Use autocompletion so you don't have to type the whole thing in.

Another method is to right click on the rpm file in the gui, and select 'install with software-installer'.

Another method is to use kpackage.

OK, One more. Keep all of your downloaded rpm files in one directory. ( This also makes it convenient to back them up in case you need them in the future)
su to root. Run the program mkhdlist. This is the program which will generate a hdlist.cz file for that directory. Now use the
Manage Software Sources part of the MCC to enter your directory which contains the downloaded rpm's. I did this with a directory the contained mostly contribs rpms, as well as some assorted rpm files.

- - -
Your original problem with the .bin.gz file may be that you didn't give the expanded .bin file execution permissions. Or you may have mistyped the name. Use the autocompletion to get the name correct.
Also, remember that you need to precede the filename with './'.
This is because the present directory '.' isn't in the PATH variable by default.

Last edited by jschiwal; 05-27-2004 at 05:15 PM.
 
Old 05-27-2004, 09:24 PM   #22
vdogvictor
Member
 
Registered: Feb 2004
Distribution: Arch
Posts: 498

Rep: Reputation: 31
he had a tar.gz not a bin.gz or whatever you are thinking of. and to do the autocomplete start typing the file name a little bit then press tab. And the "./" part is in the command "./configure" and he isn't even that far yet.
 
Old 05-29-2004, 03:51 PM   #23
dolphans1
Senior Member
 
Registered: Jun 2003
Location: LoneStar
Distribution: Mandriva & Ubuntu
Posts: 1,041

Original Poster
Rep: Reputation: 35
Thanks for the advice I will try it later this evening and report back-to-you guys. I really appreciate your help. I was out on a travel trip and was out for 3 days.

Will let you know how it goes.

d-1



Quote:
Originally posted by vdogvictor
he had a tar.gz not a bin.gz or whatever you are thinking of. and to do the autocomplete start typing the file name a little bit then press tab. And the "./" part is in the command "./configure" and he isn't even that far yet.
 
Old 05-29-2004, 06:23 PM   #24
dolphans1
Senior Member
 
Registered: Jun 2003
Location: LoneStar
Distribution: Mandriva & Ubuntu
Posts: 1,041

Original Poster
Rep: Reputation: 35
Hey Guys;

I tried all of your suggestions and none of them work.

I entered ls * and it showed all my file indicators for programs or executable files and there in red text it shows; "mozilla-i686-pc-linux-gnu-1.7rc2-installer.tar.gz" & also in red text; "mozilla-firefox-0.8.-1.norlug.i586.rpm"

I am really perplexed and frustrated as to why I can't figure it out. I mean it really sounds easy, but perhaps Mandrake 9.2 does not allow for installation of other software.

I tried the following in my xterm- "urpmi mozilla-firefox-0.8.-1.norlug.i586.rpm" and this package would not install either. It said unable to access rpm file ; error registering local package.

Any other suggestions?

Thanks,
d-1



Quote:
Originally posted by jschiwal
One method of installing a downloaded rpm file is to use the urpmi command. You need to su to root first. Then cd to the directory with the rpm file you want to install.
type:
urpmi <full-filename-of-rpm-file>

Use autocompletion so you don't have to type the whole thing in.

Another method is to right click on the rpm file in the gui, and select 'install with software-installer'.

Another method is to use kpackage.

OK, One more. Keep all of your downloaded rpm files in one directory. ( This also makes it convenient to back them up in case you need them in the future)
su to root. Run the program mkhdlist. This is the program which will generate a hdlist.cz file for that directory. Now use the
Manage Software Sources part of the MCC to enter your directory which contains the downloaded rpm's. I did this with a directory the contained mostly contribs rpms, as well as some assorted rpm files.

- - -
Your original problem with the .bin.gz file may be that you didn't give the expanded .bin file execution permissions. Or you may have mistyped the name. Use the autocompletion to get the name correct.
Also, remember that you need to precede the filename with './'.
This is because the present directory '.' isn't in the PATH variable by default.
 
Old 05-29-2004, 07:59 PM   #25
dolphans1
Senior Member
 
Registered: Jun 2003
Location: LoneStar
Distribution: Mandriva & Ubuntu
Posts: 1,041

Original Poster
Rep: Reputation: 35
Hey Guys;

This is where I am at. I may have gained some progress with the RPM file I downloaded but I don't know.

I ran this command;

cd mozilla

then I typed the following:

"rpm Uvh mozilla-firefox-0.8-1.norlug.i586.rpm"

and it went through all these long commands, and for the first time I did not get an error message.

My question, what else to I need to do to finish install for this RPM file or is it done?

If it is done, where is the icon to open it?

d-1




Quote:
Originally posted by dolphans1
Hey Guys;

I tried all of your suggestions and none of them work.

I entered ls * and it showed all my file indicators for programs or executable files and there in red text it shows; "mozilla-i686-pc-linux-gnu-1.7rc2-installer.tar.gz" & also in red text; "mozilla-firefox-0.8.-1.norlug.i586.rpm"

I am really perplexed and frustrated as to why I can't figure it out. I mean it really sounds easy, but perhaps Mandrake 9.2 does not allow for installation of other software.

I tried the following in my xterm- "urpmi mozilla-firefox-0.8.-1.norlug.i586.rpm" and this package would not install either. It said unable to access rpm file ; error registering local package.

Any other suggestions?

Thanks,
d-1

Last edited by dolphans1; 05-29-2004 at 08:01 PM.
 
Old 05-29-2004, 11:11 PM   #26
vdogvictor
Member
 
Registered: Feb 2004
Distribution: Arch
Posts: 498

Rep: Reputation: 31
it is done installing and do a search on "Where is my program installed?" there are TONS of posts on that....
 
Old 05-29-2004, 11:54 PM   #27
dolphans1
Senior Member
 
Registered: Jun 2003
Location: LoneStar
Distribution: Mandriva & Ubuntu
Posts: 1,041

Original Poster
Rep: Reputation: 35
Can you give me a hint on how to do that? I did a seacrh and I don't see anything.

d-1



Quote:
Originally posted by vdogvictor
it is done installing and do a search on "Where is my program installed?" there are TONS of posts on that....
 
Old 05-30-2004, 12:10 AM   #28
dolphans1
Senior Member
 
Registered: Jun 2003
Location: LoneStar
Distribution: Mandriva & Ubuntu
Posts: 1,041

Original Poster
Rep: Reputation: 35
When I do a search in my xterm and I type: whereis mozilla , I get [root@localhost sinvestments]#

This tells me nothing other than I am right back to where I've started.

This is unreal hard.

d-1


Quote:
Originally posted by dolphans1
Can you give me a hint on how to do that? I did a seacrh and I don't see anything.

d-1
 
Old 05-30-2004, 12:11 AM   #29
vdogvictor
Member
 
Registered: Feb 2004
Distribution: Arch
Posts: 498

Rep: Reputation: 31
Sorry, i'm not trying to be mean i just don't know the answer and I see it asked all the time. try typing "firefox" from the command line.
 
Old 05-30-2004, 12:18 AM   #30
vdogvictor
Member
 
Registered: Feb 2004
Distribution: Arch
Posts: 498

Rep: Reputation: 31
Sorry, i'm not trying to be mean i just don't know the answer and I see it asked all the time. try typing "firefox" from the command line. visit this post http://www.linuxquestions.org/questi...gram+installed

edit: sorry for posting twice, was an accident. and yes this does seem to be harder for you than it should be.

Last edited by vdogvictor; 05-30-2004 at 12:38 AM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Need Help Installing Java plugin on mozilla firefox browser srikanthrao_d Linux - Software 7 12-01-2005 05:11 PM
browser plugin for Konqueror web browser (linspire) Tracianddwayne Linux - Newbie 1 01-01-2005 02:15 PM
Installing Mozilla browser dolphans1 Mandriva 13 05-26-2004 05:06 AM
Java in Moziila 1.4 candyman123 Linux - Software 4 01-14-2004 01:50 AM
Installing Opera Browser ? aiwa Linux - Software 3 07-04-2003 02:21 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Mandriva

All times are GMT -5. The time now is 08:20 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration