Results 1 to 9 of 9

Thread: How to find installed app ?

  1. #1
    Join Date
    Jul 2018
    Beans
    14

    How to find installed app ?

    I have successfully installed an app. Is there a way I can search to see where it is located? It doesn't have a GUI client, can I create a shortcut to it and place it on the favorites section?
    Thank you.

  2. #2
    Join Date
    Nov 2007
    Location
    London, England
    Beans
    7,701

    Re: How to find installed app ?

    If you know the name of the program, you can update the file location database and then ask it:
    Code:
    sudo updatedb
    locate <program-name>

  3. #3
    Join Date
    Jul 2018
    Beans
    14

    Re: How to find installed app ?

    Great, I found a bunch of references to it and its location. Is there a way to tell which of them is the actual app? I mean does it have an equivalent .exe from DOS? Once found, can I create a shortcut to it in my favorites?

  4. #4
    Join Date
    Jun 2007
    Location
    Arizona U.S.A.
    Beans
    5,739

    Re: How to find installed app ?

    If you used a package manager to install it, the program in likely in one of several standard locations in your file system and can be run from the Activities Overview - just enter the program name in the search box. Click on the icon which represents the program in the results below the box to start it. An icon will then appear in the dock on the left when it is running; right click on it and select "Add to Favorites".

  5. #5
    Join Date
    Jul 2018
    Beans
    14

    Re: How to find installed app ?

    I installed it from the terminal, and it only runs from there. I thought If I'd have located, I could great a shortcut to it.

  6. #6
    Join Date
    Jun 2007
    Location
    Arizona U.S.A.
    Beans
    5,739

    Re: How to find installed app ?

    Quote Originally Posted by arkas2 View Post
    I installed it from the terminal, and it only runs from there. I thought If I'd have located, I could great a shortcut to it.
    If it starts from the terminal prompt, then look at the directories in the output of the command below. The executable file of the program is in one of them.

    Code:
    dmn@Roxanne:~$ echo $PATH
    /home/dmn/bin:/home/dmn/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
    (Be sure to use the output from YOUR computer not mine)
    Last edited by Dennis N; August 16th, 2018 at 11:46 PM.

  7. #7
    Join Date
    Jul 2007
    Location
    Magic City of the Plains
    Beans
    Hidden!
    Distro
    Xubuntu Development Release

    Re: How to find installed app ?

    Quote Originally Posted by arkas2 View Post
    Is there a way to tell which of them is the actual app?
    Code:
    dpkg -L <package name>
    look for a file in /usr/bin

  8. #8
    Join Date
    Jul 2018
    Beans
    14

    Re: How to find installed app ?

    Ok, thanks everyone I found it. Is there a way I can create a shortcut to it and place that in my favorites so I can just double click to run it?

  9. #9
    Join Date
    Jul 2007
    Location
    Magic City of the Plains
    Beans
    Hidden!
    Distro
    Xubuntu Development Release

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •