How to find and run newly installed programs?

Discussion in 'Linux' started by aclinml, Jan 15, 2009.

  1. aclinml

    aclinml

    Joined:
    Dec 30, 2008
    Messages:
    18
    Likes Received:
    0
    Very Newbie question here.

    I went to the add/remove programs to download the HPlip gui, which installed fine. Now, how do I actually RUN the program. I don't want to put an icon on the desktop, just want to know how to find and run newly installed programs....

    Thx
     
    aclinml, Jan 15, 2009
    #1
  2. aclinml

    markh

    Joined:
    Oct 6, 2008
    Messages:
    299
    Likes Received:
    0
    Not sure of the best way to find it for any new program, but for yours this says hp-toolbox. There's a chance that you've got a different version, as we only get fedora 8 repositories
     
    markh, Jan 15, 2009
    #2
  3. aclinml

    amturnip

    Joined:
    Jan 17, 2009
    Messages:
    13
    Likes Received:
    0
    Software comes in "RPM" packages. The RPM database knows all the files related to each package.

    To list the programs in the hplip-gui package:

    Code:
    rpm -ql hplip-gui | grep '/bin'
    In general you might not initially know the package name. You can list the recent installations:

    Code:
    tail /var/log/yum.log
    Or start from a list of ALL packages:

    Code:
    rpm -qa
    And either page through it tediously:

    Code:
    rpm -qa | less
    or narrow it down experimentally until you find what you are looking for:

    Code:
    rpm -qa | grep -i '^hp'
    Aha, there's hplip-gui.
     
    amturnip, Jan 17, 2009
    #3
  4. aclinml

    aclinml

    Joined:
    Dec 30, 2008
    Messages:
    18
    Likes Received:
    0
    Thanks, amturnip, a perfect tutorial!
     
    aclinml, Jan 20, 2009
    #4
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.