LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   RPM Installations (https://www.linuxquestions.org/questions/linux-newbie-8/rpm-installations-243492/)

john@IVC 10-16-2004 02:20 PM

RPM Installations
 
When you install a new package in Linux via the RPM. No new shortcuts are created, I guess. Is there a standard way of creating these shortcuts for applications. I installed Thunderbird email application a couple days ago and asked to have it be my default email application. But I can't find where to launch it. Thanks for the help in advance.:newbie:

vonedaddy 10-18-2004 02:58 PM

I am also new to linux and had the same problem. What I did (I dont know if it is right) but I found the installation directory and drag-and-dropped the shell script that launches the app on my desktop. It works.

Tap-Out 10-18-2004 07:40 PM

When you install a new RPM package it usually creats a link to the application in /bin or /sbin. If you can't find a shortcut to the application you installed try opening up a terminal window or using the run command option from your task bar and type in

Code:


/sbin/name-of-application

or

/bin/name-of-application

Once you find what command starts your newly installed application you can create a new link to applicaiton on your desktop and point it to that command.

Cheers

Tap.

kimchee411 10-19-2004 01:56 AM

You can query RPM to see exactly which files were installed to where for any given package. First query all and use grep to find the exact name of the package you're looking for...

rpm -aq | grep [search word]

Then you when you know the package name:

rpm -qvli [package name]

q=query, v=verbose, l=list files, i=information (will give you some info about the pkg before listing the files). The startup binary should be in a bin directory (/usr/bin/, usr/local/bin, etc.) as mentioned before.

This is also useful for finding icons and such.

Hey, I'm actually answering a question instead of asking one! Woo hoo! :D


All times are GMT -5. The time now is 08:47 PM.