How can i open the applications from the folder? Theres an option in mac, where you can access the applications folder and run an app from there. Is there a way in ubuntu?
Asked
Active
Viewed 79 times
0
1 Answers
3
Well, yes and no.
Most applications are installed in /bin
, /usr/bin
, /sbin
, and /usr/sbin
but some may be installed elsewhere like /opt
, /usr/local/bin
, /opt/bin
, or in your /home
folder. However, software that is installed may be a library, which are stored in /lib
.
Thus, really, there is no single folder where all of the applications are installed.

RPiAwesomeness
- 9,783
-
-
-
Type
locate
followed by the program name to find all files related to that program, ielocate ccsm
shows/usr/share/app-install/desktop/compizconfig-settings-manager:ccsm.desktop
for launcher and/usr/share/ccsm
or/usr/bin/ccsm
for ccsm bin file – Mark Kirby Oct 06 '15 at 16:01 -
@markkirby Very good point! You may have to run
sudo updatedb
prior to runninglocate
though, that makes sure you have the most up-to-date file locations. – RPiAwesomeness Oct 06 '15 at 23:37
firefox
, run totem typetotem
, you get the point. – Mark Kirby Oct 06 '15 at 15:27/usr/share/applications
(and~/.local/share/applications
). You can click on these directly to open applications – Wilf Oct 06 '15 at 15:30