LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 06-07-2003, 10:36 AM   #1
dirtgirl666
LQ Newbie
 
Registered: Jun 2003
Posts: 4

Rep: Reputation: 0
Question redhat 9: i canīt find my installed rpmīs


So i just switched to linux, have redhat 9, and have downloaded several rpmīs (corel draw, realplayer, things like this..) and installed them, but then i canīt find them anywhere. they donīt come up on the desktop and when i perform a search, it says it canīt find them. what the hell? what am i not doing? help!
 
Old 06-07-2003, 11:15 AM   #2
Crashed_Again
Senior Member
 
Registered: Dec 2002
Location: Atlantic City, NJ
Distribution: Ubuntu & Arch
Posts: 3,503

Rep: Reputation: 57
You can do:

updatedb

and then

locate corel
locate realplayer

You can also try:

whereis realplayer
 
Old 06-07-2003, 12:02 PM   #3
dirtgirl666
LQ Newbie
 
Registered: Jun 2003
Posts: 4

Original Poster
Rep: Reputation: 0
ok, so i did that, and what i got:

/usr/share/apps/Multimedia/realplayer.desktop
/usr/share/icons/Bluecurve/16x16/apps/realplayer.png
/usr/share/icons/Bluecurve/32x32/apps/realplayer.png

the problem is is that i donīt know what this means and i donīt know how to run the program....like, for example, is it possible now to put an icon on my red hat desktop so that i can just click on it and run the program? i really know very little about linux - nothing about commands or anything...(i am learning, however).
thanks!
 
Old 06-07-2003, 12:08 PM   #4
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
if that hasn't brought anything up (those results are nothing more than icons and links) then you've not got the files anymore or...

1) locate is case sensitive, commerical junk (hint.. don't use them..) like those apps are normally mixed case for some reason

2) if you've installed then then it doesn't matter where they are normally, you just run it without needing to know it's path.

i'm guessing you've not acutally installed at all. coreldraw is a really really crap package, try the gimp instead. sorry for my language, but it's true. also true that it was abandoned 2 years go at least, i believe.
 
Old 06-07-2003, 12:23 PM   #5
dirtgirl666
LQ Newbie
 
Registered: Jun 2003
Posts: 4

Original Poster
Rep: Reputation: 0
Thanks for bearing with all these tedious questions. ok, so iīm going to explain what i did, and then maybe you have some more advice. i went to some websites and downloaded some rpmīs. then i went into the folder on the desktop where they were saved, clicked on them, and iīm assuming that what happened next is that they installed themselves. i was asked for the root password and then the program was installing. the problem is that after it finished, when i tried to find the program on the desktop, it was nowhere, and when i did a search through the desktop, it was nowhere.

am i missing something? iīve also downloaded not crap programs like MPlayer, xcdroast, webmin...
but whatīs happened to them? i donīt understand....
i would also like to download and install trutype fonts, how do i do this?

thank you thank you thank you!
 
Old 06-07-2003, 12:46 PM   #6
Pcghost
Senior Member
 
Registered: Feb 2003
Location: The Arctic
Distribution: Fedora, Debian, OpenSuSE and Android
Posts: 1,820

Rep: Reputation: 46
To run realplayer after install, type "realplay" from the terminal.
To run webmin, open a browser and type the following address.
http://127.0.0.1:10000

For mplayer type "mplayer" from the terminal.

The fonts issue can be solved by searching for true type here in the forum, it has been covered I believe..
Hope this helps a bit.. Some linux programs automagically show up on the K-menu in kde, some don't.
 
Old 06-07-2003, 01:09 PM   #7
xyance
LQ Newbie
 
Registered: Jun 2003
Location: Charlotte, NC
Distribution: redhat9
Posts: 5

Rep: Reputation: 0
it would have been a lot easier of redhat included some sort of rpm manager, but for whatever reason, they did not. so, i had figure out a way to get around that. to get a list all the rpms installed on your system type in a console like gnome-terminal, konsole, or xterm:

rpm -qa | sort > rpms.txt

this will produce a sorted text file of all the rpms you have installed on your system. instead of having to bother to look through the file for a particular rpm, you can use the grep command to find what you need:

grep "foo" rpms.txt

where foo is the name of the package you are looking for. for example, typing grep "xmms" rpms.txt produces xmms-1.2.7-21.p. from this i know that the package name is xmms and the version is 1.2.7. to find more info you can simply type:

rpm -qi nameofpackage

i.e. rpm -qi xmms

to get a list all the files the rpm installs, type:

rpm -ql nameofpackage

and this will produce every file the rpm puts on your system. if you are only looking to find the executables, you can type:

rpm -ql nameofpackage | grep "/bin"

for example, typing rpm -ql xmms | grep "/bin" produces the output:

/usr/bin/xmms

this means there is an executable in the directory /usr/bin called xmms, which means that you can type /usr/bin/xmms to start the xmms application, however, since the directory /usr/bin is part of PATH environment variable, aka its in your path, you can simply type xmms to execute it.

anyway, as long as u keep that rpms.txt file updated, using the first command, you will always know what rpms are installed on your system.

Last edited by xyance; 06-07-2003 at 01:16 PM.
 
Old 06-07-2003, 01:53 PM   #8
kater
Member
 
Registered: Feb 2003
Location: Switzerland, Berne
Distribution: Slackware 9.0
Posts: 186

Rep: Reputation: 30
rpm -qa | grep foo
 
Old 06-07-2003, 02:35 PM   #9
dirtgirl666
LQ Newbie
 
Registered: Jun 2003
Posts: 4

Original Poster
Rep: Reputation: 0
thanks xyance and kater, that was good advice, although it didnīt all work. i tried the rpm -qa | sort > rpms.txt to try to find a list of all the rpms, but nothing happened. i just got the prompt again in the console.
i found the executable RealPlayer file, however, when i typed "realplay" in the console, the window for RealPlayer registration came up, but then the program never ran (like i had to type in an email address, but then nothing happened, the program didnīt run). and then i tried to find files for webmin and mplayer, but again nothing came up.

does this mean these programs arenīt correctly installed? how do i know if they are installed correctly? how do i know when i download a program whether or not it will install itself correctly?

will i ever be able to run programs without having to type some long complicated command into the console? or, will i ever have the luxury of simply clicking on an icon on my desktop???? AAAHHH!!!


thanks thanks thanks!!!
 
Old 06-07-2003, 04:26 PM   #10
xyance
LQ Newbie
 
Registered: Jun 2003
Location: Charlotte, NC
Distribution: redhat9
Posts: 5

Rep: Reputation: 0
what happens with "rpm -qa | sort > rpms.txt" is that a file is created in your home directory, if u haven't moved into another directory. so, just double click on the home icon on your desktop and see if rpms.txt is there. then just double click to view it.

and yes, u can run programs without using "some long complicated command". u should be able to just right click on your desktop and make a shortcut icon. it will ask to for the command to you want to execute, and as in the case with RealPlayer, that command is "realplay". all that stuff i posted about the rpm command is just to show you how to keep track of all the rpms and help you figure what command you need to type or use to make a shortcut icon to run programs
 
Old 06-15-2003, 01:48 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

Rep: Reputation: 30
That's my main complaint is the absence of a RPM Manager!!! Also RH probably did not install the program when she double-clicked the RPM. That's what's happening with me.
 
Old 06-15-2003, 02:12 PM   #12
Crashed_Again
Senior Member
 
Registered: Dec 2002
Location: Atlantic City, NJ
Distribution: Ubuntu & Arch
Posts: 3,503

Rep: Reputation: 57
Quote:
Originally posted by xyance
it would have been a lot easier of redhat included some sort of rpm manager, but for whatever reason, they did not. so, i had figure out a way to get around that. to get a list all the rpms installed on your system type in a console like gnome-terminal, konsole, or xterm:

rpm -qa | sort > rpms.txt
Isn't that what /var/log/rpmpkgs is?
 
Old 08-09-2003, 11:19 AM   #13
viccavazos
LQ Newbie
 
Registered: Aug 2003
Location: Mexico, Allende, N.L.
Distribution: Red Hat Linux 9
Posts: 19

Rep: Reputation: 0
I understand that when you install (or update or whatever) from rpms, these are deleted by default after install. I think this is what I have read.
 
  


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
How to find an installed .rpm file Gald3r Linux - Newbie 22 09-25-2005 12:19 AM
rpm cannot find installed dependencies guitarfella Slackware 1 02-23-2005 04:24 AM
rpm can't find installed dependencies? jbeiter Linux - General 4 09-17-2004 03:53 PM
installed mplayer from rpm and can't find it messenjah Linux - Software 3 07-17-2003 10:24 AM
Installed RPM/tar file, cant find out how to run it Craneology Linux - Software 4 03-01-2003 08:10 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 05:35 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