Re: how to see the programs and how firefox could open the files from the down windo
You can find the location of any binary(s) by opening a Konsole and, if you know the binary's name, issuing:
whereis nameofbinary
If it is not a binary, or you are not sure of its correct spelling then the command to use in Konsole is:
In that case a pipe (|) and "less" is used because you may open a firehose of information and you want to pipe it to the less command so you can navigate back and forth through the list using the up/down arrows and/or the pagup pagdwn keys
Originally posted by electropc
You can find the location of any binary(s) by opening a Konsole and, if you know the binary's name, issuing:
whereis nameofbinary
jerry@SonyK910:~$ whereis firefox
firefox: /usr/bin/firefox /usr/lib/firefox /usr/lib64/firefox /usr/share/firefox
jerry@SonyK910:~$
firefox: /usr/bin/firefox /usr/lib/firefox /usr/lib64/firefox /usr/share/firefox
jerry@SonyK910:~$
If it is not a binary, or you are not sure of its correct spelling then the command to use in Konsole is:
locate firefox | less
Comment