LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 06-15-2003, 01:27 PM   #1
Bigun
Member
 
Registered: Aug 2002
Location: Hickville, TN
Distribution: Gentoo > current. Have used: Red Hat 7.3, 9, Gentoo 1.4
Posts: 400

Rep: Reputation: 30
I need a GUI RPM Manager for RH 9


There are many issues I have with RH 9, but I will solve them one at a time. First one up is RH 9's RPM manager. When you pull up the menu to Add/Remove Applications and it opens up a window displaying only what was installed by default with no option to install any foreign software. Also Red Hat's way of installing RPMs is to double click the RPM from a Nautilus window and it will "automatically" install the RPM (except I haven't gotten it to work yet). I'm used to the RPM manager in RH 7.3, gnoRPM. Is there anything comperable that I can use in RH 9? Or would it be better overall to use the RPM command from a terminal?

Last edited by Bigun; 06-15-2003 at 01:28 PM.
 
Old 06-15-2003, 02:08 PM   #2
Flibble
Member
 
Registered: Mar 2002
Distribution: Redhat 9.0, Debian, Knoppix, YellowDog
Posts: 142

Rep: Reputation: 15
apt4rpm.sourceforge.net

Then use:

apt-get update

apt-get install <software of your choice>

If you like GUI's then use:

apt-get install synaptic

This will sort out virtually all RPM dependancies and install the software for you.

Flibble
 
Old 06-15-2003, 02:54 PM   #3
Bigun
Member
 
Registered: Aug 2002
Location: Hickville, TN
Distribution: Gentoo > current. Have used: Red Hat 7.3, 9, Gentoo 1.4
Posts: 400

Original Poster
Rep: Reputation: 30
Having trouble getting the source code compiled from this program. After doing the standard "./configure && make" su to root then "make install", the "apt-get" function does not exist.
 
Old 06-15-2003, 02:56 PM   #4
rmartine
Member
 
Registered: Dec 2002
Location: San Luis Obispo, CA
Distribution: Fedora Core 3
Posts: 618

Rep: Reputation: 30
There are only a handful of apps that I couldn't get to compile due to dependency issues. Even then, all rpm did was tell me what to get and I installed those from source.

apt-get is great.

Chekc this out http://apt.freshrpms.net/

Compiling from source has almost always worked for me.
 
Old 06-15-2003, 02:59 PM   #5
Bigun
Member
 
Registered: Aug 2002
Location: Hickville, TN
Distribution: Gentoo > current. Have used: Red Hat 7.3, 9, Gentoo 1.4
Posts: 400

Original Poster
Rep: Reputation: 30
That's what I'm talking about, I'm having trouble compiling apt-get. Would giving the output of me compiling it help?
 
Old 06-15-2003, 03:05 PM   #6
XavierP
Moderator
 
Registered: Nov 2002
Location: Kent, England
Distribution: Debian Testing
Posts: 19,192
Blog Entries: 4

Rep: Reputation: 475Reputation: 475Reputation: 475Reputation: 475Reputation: 475
apt-get is only available to root. Have you tried doing 'su' in the console first?
 
Old 06-15-2003, 03:11 PM   #7
Bigun
Member
 
Registered: Aug 2002
Location: Hickville, TN
Distribution: Gentoo > current. Have used: Red Hat 7.3, 9, Gentoo 1.4
Posts: 400

Original Poster
Rep: Reputation: 30
Ok, I have recompiled it as root from start to finish. I un-tarr'ed the file into my home dir. Su'ed into root. And after the standard "./configure && make && make install". the command "apt-get" does not exist...as root.
 
Old 06-15-2003, 03:18 PM   #8
rmartine
Member
 
Registered: Dec 2002
Location: San Luis Obispo, CA
Distribution: Fedora Core 3
Posts: 618

Rep: Reputation: 30
apt-get was installed by default to /usr/bin on my RedHat 8.0 box. I had to add it to PATH.

If everything compiled correctly and make instal didn't end with an error it's probably hidden somewhere. Try whereis apt-get, locate apt-get, or which apt-get

Good Luck
 
Old 06-15-2003, 04:03 PM   #9
JayCnrs
Member
 
Registered: Mar 2003
Location: Winnipeg
Distribution: Suse 9.3 Pro
Posts: 404

Rep: Reputation: 30
If compiling isn't working go to this link and just download the RPMs, APT and Synaptic from the following link:
Fresh RPMs

Once you have them downloaded go to console and the directory where you downloaded it to ,

Type su, then root password, then rpm -Uhv apt*, and then rpm -Uhv synaptic*

Then when you go back to your gui under System Settings you should have Synaptic click on it and it will ask for roots password and then it will take an inventory of every RPM on your system, from here you can install and remove RPMs using a gui.

Good Luck
 
Old 06-15-2003, 09:15 PM   #10
Bigun
Member
 
Registered: Aug 2002
Location: Hickville, TN
Distribution: Gentoo > current. Have used: Red Hat 7.3, 9, Gentoo 1.4
Posts: 400

Original Poster
Rep: Reputation: 30
I got this error message:

[root@localhost bigun]# rpm -Uvh apt*
warning: apt-0.5.5cnc5-fr2.i386.rpm: V3 DSA signature: NOKEY, key ID e42d547b
error: read failed: Is a directory (21)
apt4rpm-0.64.4: not an rpm package (or package manifest): Is a directory
 
Old 06-15-2003, 09:18 PM   #11
Bigun
Member
 
Registered: Aug 2002
Location: Hickville, TN
Distribution: Gentoo > current. Have used: Red Hat 7.3, 9, Gentoo 1.4
Posts: 400

Original Poster
Rep: Reputation: 30
Wait....nevermind, if there is anything else that fits the wildcard that isn't a RPM it won't work...
 
Old 06-15-2003, 09:25 PM   #12
Bigun
Member
 
Registered: Aug 2002
Location: Hickville, TN
Distribution: Gentoo > current. Have used: Red Hat 7.3, 9, Gentoo 1.4
Posts: 400

Original Poster
Rep: Reputation: 30
Sweet...very sweet. Can it install local RPM's?
 
Old 06-15-2003, 09:31 PM   #13
Bigun
Member
 
Registered: Aug 2002
Location: Hickville, TN
Distribution: Gentoo > current. Have used: Red Hat 7.3, 9, Gentoo 1.4
Posts: 400

Original Poster
Rep: Reputation: 30
Well...I said sweet. It said "preparing packages for installation" then sat there doing nothing for about 10 minutes.
 
Old 06-15-2003, 09:43 PM   #14
Bigun
Member
 
Registered: Aug 2002
Location: Hickville, TN
Distribution: Gentoo > current. Have used: Red Hat 7.3, 9, Gentoo 1.4
Posts: 400

Original Poster
Rep: Reputation: 30
Hmmm....this is interesting....I tried installing the RPM's I tried installing with synaptic with the RPM command. After I hit return it sits there...

Here's the command line I entered:

[root@localhost XMame&GXMame]# rpm -Uvh xmame-0.69.1-fr1.i386.rpm xmame-SDL-0.69.1-fr1.i386.rpm
alsa-lib-0.9.3-fr2.i386.rpm

There's no output....It may be the "&" causing trouble. Lemme try that....if I don't respond then it had no effect.
 
Old 06-15-2003, 09:48 PM   #15
Bigun
Member
 
Registered: Aug 2002
Location: Hickville, TN
Distribution: Gentoo > current. Have used: Red Hat 7.3, 9, Gentoo 1.4
Posts: 400

Original Poster
Rep: Reputation: 30
no effect...also I'm installing these RPM off of a fat32 partition...any clues? I'm stumped!
 
  


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 On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
GUI-based Partition Manager GCZFFL Linux - Newbie 5 06-26-2005 07:53 PM
GUI Partition Manager usa1234 Linux - Software 3 10-13-2004 02:30 AM
looking for new gui file manager exodist Linux - Software 4 07-26-2004 07:24 PM
[Gentoo file manager] Install RPM from the file manager? Coume Linux - Software 2 12-10-2003 02:21 AM
rpm manager GUI glennp Linux - General 3 11-14-2002 01:16 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

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

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