+3 votes
in Operating Systems by (71.8k points)
How can I find the location of the executable file of any software on Ubuntu?

1 Answer

+1 vote
by (71.8k points)
selected by
 
Best answer

Open the terminal on Ubuntu and type one of the following commands...

1. $ which XXX   where XXX - name of the executable file of a software e.g. $ which atom will show the location of executable of Atom text editor

2.  $ whereis XXX   where XXX - name of the executable file of a software e.g. $ whereis atom will show the location of executable of Atom text editor


...