Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
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.
|
|
08-18-2005, 03:06 PM
|
#1
|
LQ Newbie
Registered: Aug 2005
Posts: 2
Rep:
|
Very Newbie Question. Please Help
I am a week ols Mandrake (Mandriva) Linux newbie. I have installed Mandriva 10.5 LE on one of my boxes trying to learn this stuff, and get the hell away from Micro$oft.
I would like to install some packages like Limewire, BitTorrent nad even RealPlayer. I download most of them in RPM format. If I doubleclick the icon, uit says I have installed the package, but it does not list it in the menu, or even tell me where it is, just as Windoze did
I have also tried the command line install rpm -i and it says successful install.
Please tell me where the package is installed and how do I use it...
I have even tried to do a file search for the app name, and nothing shows up.
Thanks in advance,
Chris J.
|
|
|
08-18-2005, 03:17 PM
|
#2
|
Member
Registered: Jan 2005
Location: Clackamas, Oregon, US
Distribution: Slackware 10.2
Posts: 154
Rep:
|
if the RPMs you installed were for all distros, then it probably didn't create shortcuts. Try guessing the command in the terminal. Like "limewire" for limewire. Try to stick off of capitals, most programs don't use capitals from what I've seen.
|
|
|
08-18-2005, 03:20 PM
|
#3
|
Senior Member
Registered: Oct 2003
Location: New York City
Distribution: Debian Sid 2.6.32
Posts: 2,100
Rep:
|
Most executable files end up in /usr/bin but can go almost anywhere. The desktop enviornment will not create entries for newly installed programs, unless you configure it to do so. Also, the reason you may be having problems finding the executable files is because everything is case sensitive, so to a *nix system, Bittorrent is not equal to bittorrent. You can probably launch the program from the command line, but you need to know its name. If you install a program named "helper", then you could do
Code:
ls /usr/bin/h*
ls /usr/bin/H*
and see everything that starts with h or H. Hopefully, you'll see your program. Then you launch it just by typing its name and hitting enter. If it isn't in /usr/bin, try /usr/local/bin, or any location that is mention when you do Peace,
JimBass
|
|
|
08-18-2005, 04:11 PM
|
#4
|
Member
Registered: Apr 2005
Location: Perth, Western Australia
Distribution: Debian
Posts: 233
Rep:
|
to list all the files a package has installed you can do:
Code:
rpm -ql <package-name>
or parse it through grep to find files in a path containing "bin":
Code:
rpm -ql <package-name> | grep bin
|
|
|
08-18-2005, 04:44 PM
|
#5
|
Senior Member
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid/RPIOS
Posts: 4,903
|
Try locate realplayer
or whereis realplayer
both in a terminal.
You may want to install a cool little app called Grun. It basically popups a run dialog you then navigate to where the bin file for whatever program you want to start is then click run. Pretty neat for apps that do not create a menu entry.
gRun includes features such as a history, command
completion from the history and from PATH, recognition of console mode applications and launching a terminal for them, file extension associations and a dual fork()/execvp() application launcher.
http://rpmfind.net/linux/RPM/contrib....0-1.i386.html
|
|
|
08-18-2005, 09:16 PM
|
#6
|
Senior Member
Registered: Aug 2004
Location: Munich, Germany
Distribution: Opensuse 11.2
Posts: 1,549
Rep:
|
Once you've found the executable files you can easily add them into the menus manually yourself, right-click on the menu button and choose 'Edit Menus' or whatever its called.
Alternatively, to save yourself the trouble you could just create the files directly in the /usr/lib/menu directory. So for limewire create a file /usr/lib/menu/limewire and add the following text:
Code:
?package(menu): needs="X11" section="Internet/File Transfer/" icon="/usr/share/icons/limewire.png" title="LimeWire" charset="utf8" command="/usr/bin/limewire"
Update: forgot you have to run update-menus after you do this
Decide for yourself which is easier.
Also remember that Mandriva comes with a lot of packages (incl. bittorrent) in their repositories. All these packages have been specifically packaged for Mandriva so they will automatically make their own entries in the menus without you having to do anything.
Goto http://easyurpmi.zarb.org and setup your access to these repositories, you can now install software using the software installation thingo in the Mandrake Control Centre. This is pretty much essential for desktop use unless you plan on manually downloading and compiling all your software.
Last edited by tkedwards; 08-18-2005 at 10:35 PM.
|
|
|
08-18-2005, 09:19 PM
|
#7
|
LQ Newbie
Registered: Aug 2005
Posts: 2
Original Poster
Rep:
|
Thanks
Thanks everyone for the great replies. I think I got it now.
Thanks a mil
Chris J
|
|
|
08-19-2005, 04:47 PM
|
#8
|
Member
Registered: Jul 2005
Location: Ithaca, NY
Posts: 82
Rep:
|
As a SuSE user, could I use the same commands? Linux is Linux, right?
|
|
|
08-20-2005, 05:09 AM
|
#9
|
Senior Member
Registered: Aug 2004
Location: Munich, Germany
Distribution: Opensuse 11.2
Posts: 1,549
Rep:
|
Quote:
As a SuSE user, could I use the same commands? Linux is Linux, right?
|
Yes. All except the stuff in my post (about the menu locations and using urpmi - this is distro specific) is the same across distros. However keep in mind that Debian based distros (not Suse but Debian and stuff like ubuntu etc.) use DEB packages so they won't use the rpm command.
|
|
|
All times are GMT -5. The time now is 08:45 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
|
|