PDA

View Full Version : [all variants] How can I see where an app is installed?



dontfeedthegoat
September 25th, 2008, 02:49 PM
There have been a few times recently when I wanted to see where a package was installed to. Is there any way to see this info?

Elfy
September 25th, 2008, 02:54 PM
They usually go to /usr/bin but whereis will work


whereis program

crwmike
September 25th, 2008, 04:49 PM
The program binaries are usually found in /usr/bin, most application files are found in /usr/share, global config files in /etc, and user config files in your home folder in the form of .program.

EDIT:

In the terminal, type the following to find them.

sudo find / -name program

DJ_Peng
September 25th, 2008, 05:02 PM
Thanks for that code. I usually fire up Synaptic and check the Installed Files tab but this is even easier.

Yannick Le Saint kyncani
September 25th, 2008, 05:15 PM
Thanks for that code. I usually fire up Synaptic and check the Installed Files tab but this is even easier.

Yep, that would have been my answer, check the installed files in synaptic. Or do it in command line (dpkg -L packagename).

Edit: And don't forget to check the package dependencies if you have to.