LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
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


Reply
  Search this Thread
Old 08-18-2005, 03:06 PM   #1
imfineru
LQ Newbie
 
Registered: Aug 2005
Posts: 2

Rep: Reputation: 0
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.
 
Old 08-18-2005, 03:17 PM   #2
tsphan
Member
 
Registered: Jan 2005
Location: Clackamas, Oregon, US
Distribution: Slackware 10.2
Posts: 154

Rep: Reputation: 30
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.
 
Old 08-18-2005, 03:20 PM   #3
JimBass
Senior Member
 
Registered: Oct 2003
Location: New York City
Distribution: Debian Sid 2.6.32
Posts: 2,100

Rep: Reputation: 49
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
Code:
echo $PATH
Peace,
JimBass
 
Old 08-18-2005, 04:11 PM   #4
Ynot Irucrem
Member
 
Registered: Apr 2005
Location: Perth, Western Australia
Distribution: Debian
Posts: 233

Rep: Reputation: 30
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
 
Old 08-18-2005, 04:44 PM   #5
craigevil
Senior Member
 
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid/RPIOS
Posts: 4,903
Blog Entries: 29

Rep: Reputation: 537Reputation: 537Reputation: 537Reputation: 537Reputation: 537Reputation: 537
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
 
Old 08-18-2005, 09:16 PM   #6
tkedwards
Senior Member
 
Registered: Aug 2004
Location: Munich, Germany
Distribution: Opensuse 11.2
Posts: 1,549

Rep: Reputation: 52
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.
 
Old 08-18-2005, 09:19 PM   #7
imfineru
LQ Newbie
 
Registered: Aug 2005
Posts: 2

Original Poster
Rep: Reputation: 0
Thanks

Thanks everyone for the great replies. I think I got it now.

Thanks a mil

Chris J
 
Old 08-19-2005, 04:47 PM   #8
signmeuptoo
Member
 
Registered: Jul 2005
Location: Ithaca, NY
Posts: 82

Rep: Reputation: 16
As a SuSE user, could I use the same commands? Linux is Linux, right?
 
Old 08-20-2005, 05:09 AM   #9
tkedwards
Senior Member
 
Registered: Aug 2004
Location: Munich, Germany
Distribution: Opensuse 11.2
Posts: 1,549

Rep: Reputation: 52
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.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Another Newbie Question Nicksan Linux - Newbie 5 06-04-2003 04:52 PM
Apache newbie question.. (very newbie question) tarballed Linux - Newbie 1 02-07-2003 08:41 PM
RE: Suse 8.0 hardware question {newbie question, pls help} Radiouk Linux - Distributions 2 06-04-2002 12:53 PM
RE: Samba question pls help {Newbie question} Radiouk Linux - Networking 4 06-03-2002 06:40 PM
Security question {newbie question} Radio Linux - Security 3 05-17-2002 06:32 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

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