finding files
You can find an executable by name, if it is in one of the folders in the $PATH variable, with the 'which' command. For example:
which firefox
If this does not work, try casting a wider net with:
find / -name firefox
This will find all files with 'firefox' in the name under directory /
One of them should be the file you are looking for.
|