Fedora Linux Support Community & Resources Center
  #1  
Old 14th October 2006, 01:15 PM
nicc9 Offline
Registered User
 
Join Date: Oct 2006
Posts: 37
Unhappy launching apps after you install them a nightmare

hi, all.

I recently installed Fedora 5.

I'm new to Linux, even though I had tried switching over before.

one thing I really don't like is how Linux (well, at least Fedora) handles installing applications.

I mean, what happens *after* you install one. that is, absolutely nothing.

even though on Win they exaggerate, and fill up your desktop and taskbar with useless icons, if you install a program you'll find a link to the executable in the menu afterwards.

with linux nothing happens, most of the times. somehow you have to know the command to launch the application.

sometimes I'll install something and I won't even be able to start it to check it out, or I'll spend half a hour trying to find the executable.

is there a way to tell fedora to create a launcher everytime I install something?

how do you guys do?

I've been wasting a lot of time looking for the execs myself and creating launchers manually.

is this how it's supposed to be done?

thanks!

NICC9
Reply With Quote
  #2  
Old 14th October 2006, 03:05 PM
bob's Avatar
bob Online
Administrator (yeah, back again)
 
Join Date: Jul 2004
Location: Colton, NY; Junction of Heaven & Earth (also Routes 56 & 68).
Age: 67
Posts: 21,215
We use yum to install our programs from the repositories. That way, things are neat and the launchers will show up in the proper spots in the menu. Here's some information on yum: http://fedora.redhat.com/docs/yum/en/ I'd set it up as described here: http://www.fedorafaq.org/#installsoftware

Now, for the ones you've already installed - try locating them by typing 'locate programname' which should show you where it was installed - possibly /usr/bin or /usr/share . You can then 'cd' (change directory) to that location and launch it with the ./programname (period slash and the name of the program). You can also create a link to it in the desktop if you prefer or modify your menu to include it (right-click on applications and 'edit menus').
__________________
Linux & Beer - That TOTALLY Computes!
Registered Linux User #362651


Don't use any of my solutions on working computers or near small children.
Reply With Quote
  #3  
Old 14th October 2006, 06:57 PM
Detonate Offline
Registered User
 
Join Date: Dec 2005
Location: Ault, Colorado, USA
Age: 72
Posts: 144
Number 5000 for Bob.
Reply With Quote
  #4  
Old 14th October 2006, 06:59 PM
ilja Offline
Registered User
 
Join Date: Apr 2004
Location: Euregio
Posts: 3,613
take a beer, it has to be celebrated!
Attached Thumbnails
Click image for larger version

Name:	koelsch-kranz.jpg
Views:	90
Size:	65.6 KB
ID:	9310  
Reply With Quote
  #5  
Old 14th October 2006, 07:41 PM
bob's Avatar
bob Online
Administrator (yeah, back again)
 
Join Date: Jul 2004
Location: Colton, NY; Junction of Heaven & Earth (also Routes 56 & 68).
Age: 67
Posts: 21,215
Yeah! Thanks for the excuse! It's pouring rain and my beloved spouse wanted me to take a load of trash to the dump but she'll understand if I have to celebrate instead .... won't she???
__________________
Linux & Beer - That TOTALLY Computes!
Registered Linux User #362651


Don't use any of my solutions on working computers or near small children.
Reply With Quote
  #6  
Old 17th October 2006, 06:13 AM
Omega Blue's Avatar
Omega Blue Offline
Registered User
 
Join Date: Apr 2005
Location: Fragrant Harbour
Posts: 1,344
Hi nicc9,

Welcome! Here's a good website to get you started: rute's guide

GNU/Linux's way is different from Windows so it takes some time to get adjusted.
Reply With Quote
  #7  
Old 18th October 2006, 06:42 AM
rappermas's Avatar
rappermas Offline
Registered User
 
Join Date: Oct 2005
Location: Colorado
Age: 24
Posts: 1,281
Go Bob!

Just type the name of the program at the command line to start it if you can't find it in the menus.
__________________
PRECISION:
Dell Precision 380, Intel Pentium D, 3.00 GHz, 2 GB (4 x 512 MB) DDR2, ATi FireGL v3100 (128 MB), SB X-Fi, Sony 16X DVD-ROM, Optiarc 16X DVD+/-RW

VALOR:
HP Pavilion, Intel Pentium IV 3.2 GHz HT, 1 GB Corsair, nVIDIA Quadro FX 1100 (128 MB), SB Live!, HP 16X DVD-Writer 400i, 16X DVD-ROM

HPPAV:
HP Pavilion 8766C, Intel Pentium III 900 MHz, 640 MB PC-100 SDRAM (3 DIMMs), nVIDIA GeForce FX5200 (256 MB), ESS Maestro 2E, HP CD-Writer Plus (CD-RW 4X), Hitachi 8X DVD-ROM
Reply With Quote
  #8  
Old 18th October 2006, 01:35 PM
nicc9 Offline
Registered User
 
Join Date: Oct 2006
Posts: 37
Thumbs up

Quote:
Originally Posted by Omega Blue
Hi nicc9,

Welcome! Here's a good website to get you started: rute's guide

GNU/Linux's way is different from Windows so it takes some time to get adjusted.
bookmarked.

thanks!
Reply With Quote
  #9  
Old 18th October 2006, 01:37 PM
nicc9 Offline
Registered User
 
Join Date: Oct 2006
Posts: 37
Quote:
Originally Posted by rappermas
Go Bob!

Just type the name of the program at the command line to start it if you can't find it in the menus.
I know, but sometimes it's not the same as the name of the program.

generally (from what I've seen) it's the name of the program lowercase, if it's 2 words than it's firstword-secondword.

however I've found some apps that have the initials as the command to launch them. others you need to type something that has nothing to do with the name.

I've been installing with yumex, and generally they do add a launcher to the menu.
Reply With Quote
  #10  
Old 18th October 2006, 01:47 PM
bryancole Offline
Registered User
 
Join Date: Jul 2004
Posts: 414
This is a problem with older applications which have not yet adopted the Freedesktop standard (one of which is installation .desktop files from which menu items/launchers are created).

For these older apps, I often find myself openning a terminal window and running:

rpm -ql <package> | grep bin

(replace <package> with the name of the package you've just installed)
This command lists the contents of the package file-by-file and passes them to 'grep' which filters the list picking out entries with 'bin' in their path. Packages invariably place the executable files in one of the bin (binary) folders: /bin /usr/bin /usr/local/bin etc.

This isn't perfect, but it usually suffices
Reply With Quote
  #11  
Old 18th October 2006, 01:54 PM
nicc9 Offline
Registered User
 
Join Date: Oct 2006
Posts: 37
Smile

Quote:
Originally Posted by bryancole
This is a problem with older applications which have not yet adopted the Freedesktop standard (one of which is installation .desktop files from which menu items/launchers are created).

For these older apps, I often find myself openning a terminal window and running:

rpm -ql <package> | grep bin

(replace <package> with the name of the package you've just installed)
This command lists the contents of the package file-by-file and passes them to 'grep' which filters the list picking out entries with 'bin' in their path. Packages invariably place the executable files in one of the bin (binary) folders: /bin /usr/bin /usr/local/bin etc.

This isn't perfect, but it usually suffices
awesome, I'll try that too. thanks!

in
Reply With Quote
  #12  
Old 18th October 2006, 03:00 PM
neilloffhagen Offline
Registered User
 
Join Date: Feb 2006
Location: Berkshire, UK
Posts: 123
If you try the "locate programname" mentioned above and it comes back with nothing it may be the locate database needs updating first. I think it is automatically updated through a cron job, but if you're not running your system 24 hours you might miss the time of the job. So try "updatedb" in a terminal as root and then try the locate again. Alternatively you could try "which programname" as in [loffhnm1@pc-mon18101 ~]$ which ooffice
/usr/bin/ooffice
[loffhnm1@pc-mon18101 ~]$ which realplay
/usr/bin/realplay
[loffhnm1@pc-mon18101 ~]$ which firefox
/usr/bin/firefox
[loffhnm1@pc-mon18101 ~]$

and it displays where the program is located. Of course the problem exists in that you need to know the name of the app first. Whereas with locate you can just put in part of the name, but will get loads of info back.

Neil.
__________________
Registered Linux user # 41270 :p
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Weirdness when launching various apps Fry-kun Using Fedora 1 30th March 2007 12:56 AM
why do gnome apps stop launching? idiotprogrammer Using Fedora 2 10th July 2006 12:18 PM
Problem launching apps in FC4 PaLoBo Using Fedora 9 28th June 2005 08:29 PM
Installing apps on Fedora Core 4 is a nightmare Emret Using Fedora 11 20th June 2005 07:06 PM


Current GMT-time: 20:55 (Monday, 20-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat