LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Running from terminal? (https://www.linuxquestions.org/questions/linux-software-2/running-from-terminal-341595/)

gibran 07-09-2005 09:15 AM

Running from terminal?
 
Complete Linux newbie here, so excuse the stupid question.
I installed firefox into /usr/bin
Id like to be able to run firefox from the terminal..but when i type in firefox (command not found). I tried looking at the man pages also, but 'no manual entry for firefox'.

Any ideas on how i can run the program from the command line?

mdg 07-09-2005 09:22 AM

Try "mozilla-firefox"

gibran 07-09-2005 09:23 AM

nope didnt work :( :Pengy:

mdg 07-09-2005 10:07 AM

Are you working in X (graphical environment)? What error does "mozilla-firefox" return?

reddazz 07-09-2005 10:27 AM

How exactly did you install firefox?

gibran 07-09-2005 11:01 AM

running fluxbox, mozilla-firefox returns
bash: mozilla-firefox: command not found

installed firefox from binary

reddazz 07-09-2005 11:39 AM

Quote:

Originally posted by gibran
running fluxbox, mozilla-firefox returns
bash: mozilla-firefox: command not found

installed firefox from binary

The command should just be firefox. Its puzziling why its not working.

tredegar 07-09-2005 12:15 PM

First thing is to find out what your PATH is:
echo $PATH

Next is to find out where firefox is.
First, as root type locate -u to update the database. Now exit from root.
Now you can find out where firefox is:
locate firefox | grep bin

And I find mine is at /usr/bin/mozilla-firefox .

As /usr/bin/ is already in my PATH, I can start it by typing just mozilla-firefox . If it was not in my PATH, I'd either have to update and export my PATH, or type the full pathname: /usr/bin/mozilla-firefox.

Now you know the command to start it, you could make a link to it from your desktop: Right-click your desktop Create New...File...Link to application. Under the Application tab you put the full path to mozilla-firefox into the Command box. Give your link a suitably memorabe icon, and you are done.

HTH


All times are GMT -5. The time now is 10:15 AM.