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 |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
06-07-2003, 10:36 AM
|
#1
|
LQ Newbie
Registered: Jun 2003
Posts: 4
Rep:
|
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!
|
|
|
06-07-2003, 11:15 AM
|
#2
|
Senior Member
Registered: Dec 2002
Location: Atlantic City, NJ
Distribution: Ubuntu & Arch
Posts: 3,503
Rep:
|
You can do:
updatedb
and then
locate corel
locate realplayer
You can also try:
whereis realplayer
|
|
|
06-07-2003, 12:02 PM
|
#3
|
LQ Newbie
Registered: Jun 2003
Posts: 4
Original Poster
Rep:
|
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!
|
|
|
06-07-2003, 12:08 PM
|
#4
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417
|
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.
|
|
|
06-07-2003, 12:23 PM
|
#5
|
LQ Newbie
Registered: Jun 2003
Posts: 4
Original Poster
Rep:
|
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!
|
|
|
06-07-2003, 12:46 PM
|
#6
|
Senior Member
Registered: Feb 2003
Location: The Arctic
Distribution: Fedora, Debian, OpenSuSE and Android
Posts: 1,820
Rep:
|
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.
|
|
|
06-07-2003, 01:09 PM
|
#7
|
LQ Newbie
Registered: Jun 2003
Location: Charlotte, NC
Distribution: redhat9
Posts: 5
Rep:
|
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.
|
|
|
06-07-2003, 01:53 PM
|
#8
|
Member
Registered: Feb 2003
Location: Switzerland, Berne
Distribution: Slackware 9.0
Posts: 186
Rep:
|
rpm -qa | grep foo
|
|
|
06-07-2003, 02:35 PM
|
#9
|
LQ Newbie
Registered: Jun 2003
Posts: 4
Original Poster
Rep:
|
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!!!
|
|
|
06-07-2003, 04:26 PM
|
#10
|
LQ Newbie
Registered: Jun 2003
Location: Charlotte, NC
Distribution: redhat9
Posts: 5
Rep:
|
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 
|
|
|
06-15-2003, 01:48 PM
|
#11
|
Member
Registered: Aug 2002
Location: Hickville, TN
Distribution: Gentoo > current. Have used: Red Hat 7.3, 9, Gentoo 1.4
Posts: 400
Rep:
|
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.
|
|
|
06-15-2003, 02:12 PM
|
#12
|
Senior Member
Registered: Dec 2002
Location: Atlantic City, NJ
Distribution: Ubuntu & Arch
Posts: 3,503
Rep:
|
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?
|
|
|
08-09-2003, 11:19 AM
|
#13
|
LQ Newbie
Registered: Aug 2003
Location: Mexico, Allende, N.L.
Distribution: Red Hat Linux 9
Posts: 19
Rep:
|
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.
|
|
|
All times are GMT -5. The time now is 03:29 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|