Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

Possible Duplicate:
Where are my installed applications?

Just a Quick question

As i'm a newbie in Linux , im just curious that when you install any application through terminal or Software Center then in which folder the application is installed as we know that in window it is installed in Programs Folder but what about Ubuntu or any other distro ?

share|improve this question

marked as duplicate by Tom Brossman, Mik, maythux, Mitch, Stephen Myall Oct 16 '12 at 10:28

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 4 down vote accepted

There are some very good answers to a similar question to yours over at

What is the equivalent to the Windows "Program Files" folder?

But the general idea is that the /bin and /usr/bin are where the start up application files (executables or scripts) are stored. The direct equivalent of "Program Files" though is probably /usr/share this is the directory that contains the various support files for most applications

For a good overview of the Ubuntu file structure check out the link below.

https://help.ubuntu.com/community/LinuxFilesystemTreeOverview

share|improve this answer
Many of the files in /bin and /usr/bin are scripts, but more are actual binary executables. – Eliah Kagan Jun 16 '12 at 4:56

You can discover where a package puts its 'stuff' by running:

dpkg -L 'packagename'

There's still a set of 'standard' locations that programs are put into. For example, binaries (in windows parlance 'executables') are put in /usr/bin, and documentation is put in /usr/share/doc in a Ubuntu system.

This is a pretty simplistic answer. For more details about how linux/unix directories are typically structured, see this:

http://www.pathname.com/fhs/pub/fhs-2.3.html

share|improve this answer

There is no "Program Files" Directory in Linux. The Application's Parts are distributed according to what they are. There are a lot of explanations of the Directory Structure out there, you can use this one for a start.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.