1

In Windos OS I used to browse to C--> Program Files to find the application needed to launch a file, I can not do this in Ubuntu.whenever the Launch Application ask me to Choose an Appliction I wounder arround, I believe it is simple aliphabetical quistion of Ubuntu but I really want to know it.

Braiam
  • 67,791
  • 32
  • 179
  • 269

2 Answers2

3

That's right, for there's no single place to put an app in Linux. There's no monolithic One Way To Do Things in Linux, no mandate from above, and the well-written guidelines (e.g., http://www.tldp.org/HOWTO/HighQuality-Apps-HOWTO/fhs.html which explain why take some time to find and read.

/bin, /usr/bin, /sbin, /usr/sbin, /usr/local, /usr/local/bin, /opt, /opt/bin and /usr/games all can contain executables, and echo $PATH shows you the directories which are automatically searched on your system when an app is entered in CLI mode. Instead, Synaptic package manager is the way to go to find app executables; search on the app you want, and Synaptic will show you where the app's executable is.

If you do not have Synaptic, open a terminal window and do sudo apt-get -y install synaptic to add it.

guntbert
  • 13,134
K7AAY
  • 17,202
  • 1
    I just wounder because I dont find the application for that file, it is online and when I click on it Application Launcher pop up, I guess this is a bug and should be fixed in the future, it makes Ubuntu so difficult – Fatharrahman Nov 14 '13 at 21:12
3

In addition to the locations that kiloseven has listed, you can also find installed apps in /usr/share/applications.

Another way to Open With is to right click on the desired file, and choose Open With, and then pick the application or choose Other Application, and click on Show other applications, and browse for more. See images below.

enter image description here

enter image description here

enter image description here

Mitch
  • 107,631