Where can I find the location of folders for installed programs?

I'm new to Ubuntu and would like to know where I can find the location of program files for programs installed from the Ubuntu Software Center or the Terminal.

1

6 Answers

Also, if you just need to know where the executable is you can run whereis executable or which executable For instance:

$ whereis firefox
firefox: /usr/bin/firefox /etc/firefox /usr/lib/firefox /usr/share/man/man1/firefox.1.gz
$ which firefox
/usr/bin/firefox

on the command line, you can use dpkg --listfiles packagename. For instance, dpkg --listfiles firefox. If you want to see what files a package contains without installing it, then you can install apt-file and use that.

But you really shouldn't mess with it. There is usually no reason to manually interfere with the contents of a package. All configuration files for normal applications are placed in the users home directory. You don't have savegames in C:\Programfiles\Appname\savegames, for instance. They would be placed in /home/username/.local/share/appname/savegames. That way, if you move your home directory to another machine, it keeps all configurations and user data.

3

or

dpkg -L banshee

If you do not find the command with whereis or which then maybe it is an alias. Try

alias

and check if the command is in the list.

Use the synaptic-package-manager:

synaptic Package Manager (GUI)

Assuming that we'd like to locate the files of the autotools-dev package, under 'Quick filter' enter autotools to locate it. The autotools-dev package appears automatically. Select it by clicking on it and then press 'Properties'. In the appearing dialog select the tab 'Installed Files'.

2

The builtin Bash command, called command is also available:

 command [-pVv] command [arguments …]

Examples of usage:

$ command -v cat
/bin/cat
$ command -V cat
cat is /bin/cat

When the searched command is an alias:

$ command -v ll
alias ll='ls -alF'
$ command -V ll
ll is aliased to `ls -alF'

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like