How do I run Firefox browser from the Linux command line (shell prompt)? How to run Firefox from command line on Linux based server?
You can use command line as follows with special arguments to start Mozilla firefox.
Firefox Start Browser
To open the browser, enter:
$ firefox
OR
$ /usr/bin/firefox
Firefox Open URL
To open URL in a new tab, enter:
$ /usr/bin/firefox -new-window http://www.cyberciti.biz/
To open URL in a new window, enter:
$ /usr/bin/firefox www.cyberciti.biz
Firefox Search option
You can search words (term) with your default search engine, enter:
$ /usr/bin/firefox -search "term"
$ /usr/bin/firefox -search "linux add user to group"
Open Firefox Options / Preferences
To open Firefox options/preferences window, enter:
$ /usr/bin/firefox -preferences
Set Firefox As Default Browser
To set the Firefox app as the default browser, enter:
$ /usr/bin/firefox -setDefaultBrowser
How Do I Run Firefox Remotely On Server?
SSH is frequently used to tunnel insecure traffic over the Internet in a secure way. You can login to remote server using the ssh client:
$ ssh -X user@server42.nixcraft.com
To run firefox, enter:
$ /usr/bin/firefox &
$ /usr/bin/firefox www.cyberciti.biz
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop













{ 7 comments… read them below or add one }
hello,
the shell comand “firefox” does only work if you start in from a e.g. gnome terminal, and gnome is running on this display.
what is the command if you want start friefox e.g on tty1 , where no desktop is running?
linux says ” error : no display specified”
How to specify the display ?
or does it only work when starting from tty7 (where the desktop is running) in this case i’m wondering about the advantage starting from a shell. because you could also click on the firefox button in front panel.
thx for advice
You need 2 command lines. (you do not need to be logged as root)
But first you need :
To get the X server installed = xserver-xorg
To get a graphical interface installed : Gnome or KDE or LXDE or XFCE or whatever you want…
To be located and log on in a TTY console
The first command line is to set the variable “DISPLAY” to “:0″ by the following :
username@localhost:~$ export DISPLAY=:0
To verify your work has been done efficiently you may enter, to see the value of your variable :
username@localhost:~$ echo $DISPLAY
You should get :
:0
The second one by entering the program name you need to run, iceweasel for exemple :
username@localhost:~$ /usr/lib/iceweasel/firefox.bin http://www.debian.org &
NOTA : The sign “&” at the end gives you back the command line available.
…and it will start firefox on the web page http://www.debian.org in you graphical interface…
Have fun and thank you !!! So much !!!
My previous topic gives you how to start a graphical software in tty7 from a command line in tty console like tty1 to tty6.
It’s helpfull to run a software remotly.
You need to get you desktop environment started.
By I should know, it’s not possible to start a graphical software from the console without your desktop environment started.
If you want to navigate on the Internet by a command line software in text mode from the console, you should use “Lynx”
open -a /Applications/Firefox.app http://example.com is what I use from the Mac terminal
HI Vivek,
I removed firefor old version using yum command. And downloaded firefox 18 .tar.bz2.
Unzipped the tar file in /home/user/firefox.
[root@localhost firefox]# /usr/bin/firefox
bash: /usr/bin/firefox: No such file or directory
Is that any settings i need to do?
you need to install the package and then see the following is present
/usr/bin/firefox
Hey I was wondering if I could close a tab in terminal? i wanted to run a bash script that opened a particular window and close it. for example i have
#!/bin/bash
firefox http://www.google.com –new-window
now i’m stuck with an open window i want to close. Is there a way to do it in terminal?