How to launch default web browser from the terminal?












75















I was wondering what's the terminal command to open the default web browser.










share|improve this question





























    75















    I was wondering what's the terminal command to open the default web browser.










    share|improve this question



























      75












      75








      75


      16






      I was wondering what's the terminal command to open the default web browser.










      share|improve this question
















      I was wondering what's the terminal command to open the default web browser.







      command-line






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Apr 25 '14 at 12:41









      Braiam

      51.6k20136220




      51.6k20136220










      asked Oct 19 '10 at 10:39









      LucaLuca

      1,21711013




      1,21711013






















          6 Answers
          6






          active

          oldest

          votes


















          82














          sensible-browser is the command you're looking for.






          share|improve this answer
























          • What about the differences between sensible-utils package and the system of alternatives found in /etc/alternatives and modified by update-alternatives?

            – enzotib
            Oct 19 '10 at 12:59






          • 6





            For me sensible-browser opens Opera instead pf default Chrome. xdg-open works as expected.

            – incrop
            Jun 17 '14 at 15:12






          • 2





            what @Incrop said is still true for Ubuntu 16.04, this opens Firefox instead of my default browser Chromium.

            – Andreas Hacker
            Mar 16 '17 at 10:58








          • 1





            sensible-browser doesn't follow user preference configured in unity-control-centre. xdg-open does.

            – Peer Gynt
            Feb 5 '18 at 0:58



















          64














          Searching on Google I found the answer.




          xdg-open opens a file or URL in the user's preferred application. If a
          URL is provided the URL will be opened
          in the user's preferred web browser.
          If a file is provided the file will be
          opened in the preferred application
          for files of that type. xdg-open
          supports file, ftp, http and https
          URLs.




          xdg-open is part of xdg-utils package and it's already installed on Ubuntu 10.10.






          share|improve this answer
























          • what does xdg stand for? Its hard to remember without knowing that.

            – Thupten
            Jul 13 '14 at 14:42






          • 1





            XDG stands for X Desktop Group aka freedesktop.org

            – Luca
            Jul 13 '14 at 19:05











          • Still still works on a default Ubuntu 16.04 installation.

            – Andreas Hacker
            Mar 16 '17 at 11:20






          • 1





            if the user once configured to open html files with a text editor by default, this will not work. OP asks for a way to open the web browser, not the default application for html files (even though by default it's the same)

            – Blauhirn
            Jun 29 '17 at 16:48













          • This will work on any gnu/linux distro that has x-server window manager (that is just about all of them - eg debian, *buntu, fedora, manjaro, Arch etc)

            – flurbius
            Dec 27 '17 at 19:58



















          11














          You can also use:



          x-www-browser http://some-url.org


          And it will open the URL in the default browser.






          share|improve this answer



















          • 1





            for me, in Ubuntu 16.04, this will open Firefox even though Chromium is set as the default browser in the "Default Applications" setting.

            – Andreas Hacker
            Mar 16 '17 at 10:56



















          4














          With default Ubuntu setup only gnome-open command comes to mind.



          gnome-open http://askubuntu.com





          share|improve this answer



















          • 4





            With default Ubuntu setup, sensible-browser and xdg-open commands work as well.

            – marenostrum
            Oct 19 '10 at 12:38






          • 1





            The advantage is that you can use gnome-open for almost all file-types, URIs and directories. It's one command to learn, instead of trying to remember about obscure commands like sensible-browser

            – Stefan Lasiewski
            Oct 21 '10 at 18:19






          • 5





            @Stefan Lasiewski: xdg-open should do the same thing - actually, it will call gnome-open, or kde-open, or whatever, depending on your desktop environment. Thus it's more portable.

            – Piskvor
            Aug 22 '11 at 14:37











          • in Ubuntu 16.04, gnome-open is not installed by default

            – Andreas Hacker
            Mar 16 '17 at 10:55











          • gnome-open is dependent on gnome desktop, better off using xdg as its more common

            – flurbius
            Dec 27 '17 at 19:59



















          2














          I played around this a little.
          There is a problem with gnome-open — it won't invoke the default web browser unless you specify a url.
          That's a problem if you want to set up an icon or a shortcut that will always launch the browser that is set as default.
          Other times you might need to set it as a parameter for some programs that require a link to a web browser and don't work well with gnome-open (e.g.: acroread).
          You might solve this by using either x-www-browser or gnome-www-browser system links that you can set up through update-alternatives, but those are system wide settings, not user specific (and they are not synchronized with the values set through gnome-default-applications-properties.
          All this can be solved by opening the sensible-browserexecutable (which is actually a script):



          sudo gedit $(which sensible-browser)


          and adding this at the beginning:



          #!/bin/bash
          BROWSER=$(gconftool -g /desktop/gnome/url-handlers/http/command)
          export BROWSER="${BROWSER//""%s""/}"


          That will make sensible-browser always launch the user-specified default web browser.
          (I found out that gnome-default-applications-properties changes some gconf keys according to the browser that is currently set. The default browser value can be obtained from any of these keys so I went for /desktop/gnome/url-handlers/http/command and used it to fill the $BROWSER variable (the value is stripped of the "%s" part). )






          share|improve this answer





















          • 1





            I wouldn't recommend editing /usr/bin/sensible-browser as this answer recommends. This change will be overwritten on a system upgrade.

            – Gilles
            Feb 21 '14 at 11:53











          • rather than try to install a modified script on a users system, a more realistic solution is to use xdg-open as per Luca's answer. If you specify a html file or a URL it WILL open the browser - if you supply something else it will open an appropriate application for that type of resource. I doubt there is any good reason to open some file with a browser when it will be better handled by some other application, either by default or in accordance with the users explicit choice. If you must, you can force the browser to open it with x-www-browser (see Benjamin's answer)

            – flurbius
            Dec 27 '17 at 20:34



















          -2














          Follow below commands :





          1. $ type -a Firefox : This gives path to firefox application


          2. $ /usr/bin/firefox www.facebook.com : This opens a tab with www.facebook.com






          share|improve this answer










          New contributor




          Simpy Parveen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.
















          • 3





            Firefox is not always the default web browser

            – storm
            Jan 18 at 8:05











          • ofcourse, we can use another browser, as per the choice

            – Simpy Parveen
            Jan 18 at 18:26











          • Why wouldn't you just run firefox directly instead of getting the path and then running the path? At any rate, the answer misses the point: the question is about running the default browser, not Firefox.

            – Olorin
            yesterday











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "89"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f8252%2fhow-to-launch-default-web-browser-from-the-terminal%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          6 Answers
          6






          active

          oldest

          votes








          6 Answers
          6






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          82














          sensible-browser is the command you're looking for.






          share|improve this answer
























          • What about the differences between sensible-utils package and the system of alternatives found in /etc/alternatives and modified by update-alternatives?

            – enzotib
            Oct 19 '10 at 12:59






          • 6





            For me sensible-browser opens Opera instead pf default Chrome. xdg-open works as expected.

            – incrop
            Jun 17 '14 at 15:12






          • 2





            what @Incrop said is still true for Ubuntu 16.04, this opens Firefox instead of my default browser Chromium.

            – Andreas Hacker
            Mar 16 '17 at 10:58








          • 1





            sensible-browser doesn't follow user preference configured in unity-control-centre. xdg-open does.

            – Peer Gynt
            Feb 5 '18 at 0:58
















          82














          sensible-browser is the command you're looking for.






          share|improve this answer
























          • What about the differences between sensible-utils package and the system of alternatives found in /etc/alternatives and modified by update-alternatives?

            – enzotib
            Oct 19 '10 at 12:59






          • 6





            For me sensible-browser opens Opera instead pf default Chrome. xdg-open works as expected.

            – incrop
            Jun 17 '14 at 15:12






          • 2





            what @Incrop said is still true for Ubuntu 16.04, this opens Firefox instead of my default browser Chromium.

            – Andreas Hacker
            Mar 16 '17 at 10:58








          • 1





            sensible-browser doesn't follow user preference configured in unity-control-centre. xdg-open does.

            – Peer Gynt
            Feb 5 '18 at 0:58














          82












          82








          82







          sensible-browser is the command you're looking for.






          share|improve this answer













          sensible-browser is the command you're looking for.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Oct 19 '10 at 10:50









          EvanEvan

          4,1281717




          4,1281717













          • What about the differences between sensible-utils package and the system of alternatives found in /etc/alternatives and modified by update-alternatives?

            – enzotib
            Oct 19 '10 at 12:59






          • 6





            For me sensible-browser opens Opera instead pf default Chrome. xdg-open works as expected.

            – incrop
            Jun 17 '14 at 15:12






          • 2





            what @Incrop said is still true for Ubuntu 16.04, this opens Firefox instead of my default browser Chromium.

            – Andreas Hacker
            Mar 16 '17 at 10:58








          • 1





            sensible-browser doesn't follow user preference configured in unity-control-centre. xdg-open does.

            – Peer Gynt
            Feb 5 '18 at 0:58



















          • What about the differences between sensible-utils package and the system of alternatives found in /etc/alternatives and modified by update-alternatives?

            – enzotib
            Oct 19 '10 at 12:59






          • 6





            For me sensible-browser opens Opera instead pf default Chrome. xdg-open works as expected.

            – incrop
            Jun 17 '14 at 15:12






          • 2





            what @Incrop said is still true for Ubuntu 16.04, this opens Firefox instead of my default browser Chromium.

            – Andreas Hacker
            Mar 16 '17 at 10:58








          • 1





            sensible-browser doesn't follow user preference configured in unity-control-centre. xdg-open does.

            – Peer Gynt
            Feb 5 '18 at 0:58

















          What about the differences between sensible-utils package and the system of alternatives found in /etc/alternatives and modified by update-alternatives?

          – enzotib
          Oct 19 '10 at 12:59





          What about the differences between sensible-utils package and the system of alternatives found in /etc/alternatives and modified by update-alternatives?

          – enzotib
          Oct 19 '10 at 12:59




          6




          6





          For me sensible-browser opens Opera instead pf default Chrome. xdg-open works as expected.

          – incrop
          Jun 17 '14 at 15:12





          For me sensible-browser opens Opera instead pf default Chrome. xdg-open works as expected.

          – incrop
          Jun 17 '14 at 15:12




          2




          2





          what @Incrop said is still true for Ubuntu 16.04, this opens Firefox instead of my default browser Chromium.

          – Andreas Hacker
          Mar 16 '17 at 10:58







          what @Incrop said is still true for Ubuntu 16.04, this opens Firefox instead of my default browser Chromium.

          – Andreas Hacker
          Mar 16 '17 at 10:58






          1




          1





          sensible-browser doesn't follow user preference configured in unity-control-centre. xdg-open does.

          – Peer Gynt
          Feb 5 '18 at 0:58





          sensible-browser doesn't follow user preference configured in unity-control-centre. xdg-open does.

          – Peer Gynt
          Feb 5 '18 at 0:58













          64














          Searching on Google I found the answer.




          xdg-open opens a file or URL in the user's preferred application. If a
          URL is provided the URL will be opened
          in the user's preferred web browser.
          If a file is provided the file will be
          opened in the preferred application
          for files of that type. xdg-open
          supports file, ftp, http and https
          URLs.




          xdg-open is part of xdg-utils package and it's already installed on Ubuntu 10.10.






          share|improve this answer
























          • what does xdg stand for? Its hard to remember without knowing that.

            – Thupten
            Jul 13 '14 at 14:42






          • 1





            XDG stands for X Desktop Group aka freedesktop.org

            – Luca
            Jul 13 '14 at 19:05











          • Still still works on a default Ubuntu 16.04 installation.

            – Andreas Hacker
            Mar 16 '17 at 11:20






          • 1





            if the user once configured to open html files with a text editor by default, this will not work. OP asks for a way to open the web browser, not the default application for html files (even though by default it's the same)

            – Blauhirn
            Jun 29 '17 at 16:48













          • This will work on any gnu/linux distro that has x-server window manager (that is just about all of them - eg debian, *buntu, fedora, manjaro, Arch etc)

            – flurbius
            Dec 27 '17 at 19:58
















          64














          Searching on Google I found the answer.




          xdg-open opens a file or URL in the user's preferred application. If a
          URL is provided the URL will be opened
          in the user's preferred web browser.
          If a file is provided the file will be
          opened in the preferred application
          for files of that type. xdg-open
          supports file, ftp, http and https
          URLs.




          xdg-open is part of xdg-utils package and it's already installed on Ubuntu 10.10.






          share|improve this answer
























          • what does xdg stand for? Its hard to remember without knowing that.

            – Thupten
            Jul 13 '14 at 14:42






          • 1





            XDG stands for X Desktop Group aka freedesktop.org

            – Luca
            Jul 13 '14 at 19:05











          • Still still works on a default Ubuntu 16.04 installation.

            – Andreas Hacker
            Mar 16 '17 at 11:20






          • 1





            if the user once configured to open html files with a text editor by default, this will not work. OP asks for a way to open the web browser, not the default application for html files (even though by default it's the same)

            – Blauhirn
            Jun 29 '17 at 16:48













          • This will work on any gnu/linux distro that has x-server window manager (that is just about all of them - eg debian, *buntu, fedora, manjaro, Arch etc)

            – flurbius
            Dec 27 '17 at 19:58














          64












          64








          64







          Searching on Google I found the answer.




          xdg-open opens a file or URL in the user's preferred application. If a
          URL is provided the URL will be opened
          in the user's preferred web browser.
          If a file is provided the file will be
          opened in the preferred application
          for files of that type. xdg-open
          supports file, ftp, http and https
          URLs.




          xdg-open is part of xdg-utils package and it's already installed on Ubuntu 10.10.






          share|improve this answer













          Searching on Google I found the answer.




          xdg-open opens a file or URL in the user's preferred application. If a
          URL is provided the URL will be opened
          in the user's preferred web browser.
          If a file is provided the file will be
          opened in the preferred application
          for files of that type. xdg-open
          supports file, ftp, http and https
          URLs.




          xdg-open is part of xdg-utils package and it's already installed on Ubuntu 10.10.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Oct 19 '10 at 10:50









          LucaLuca

          1,21711013




          1,21711013













          • what does xdg stand for? Its hard to remember without knowing that.

            – Thupten
            Jul 13 '14 at 14:42






          • 1





            XDG stands for X Desktop Group aka freedesktop.org

            – Luca
            Jul 13 '14 at 19:05











          • Still still works on a default Ubuntu 16.04 installation.

            – Andreas Hacker
            Mar 16 '17 at 11:20






          • 1





            if the user once configured to open html files with a text editor by default, this will not work. OP asks for a way to open the web browser, not the default application for html files (even though by default it's the same)

            – Blauhirn
            Jun 29 '17 at 16:48













          • This will work on any gnu/linux distro that has x-server window manager (that is just about all of them - eg debian, *buntu, fedora, manjaro, Arch etc)

            – flurbius
            Dec 27 '17 at 19:58



















          • what does xdg stand for? Its hard to remember without knowing that.

            – Thupten
            Jul 13 '14 at 14:42






          • 1





            XDG stands for X Desktop Group aka freedesktop.org

            – Luca
            Jul 13 '14 at 19:05











          • Still still works on a default Ubuntu 16.04 installation.

            – Andreas Hacker
            Mar 16 '17 at 11:20






          • 1





            if the user once configured to open html files with a text editor by default, this will not work. OP asks for a way to open the web browser, not the default application for html files (even though by default it's the same)

            – Blauhirn
            Jun 29 '17 at 16:48













          • This will work on any gnu/linux distro that has x-server window manager (that is just about all of them - eg debian, *buntu, fedora, manjaro, Arch etc)

            – flurbius
            Dec 27 '17 at 19:58

















          what does xdg stand for? Its hard to remember without knowing that.

          – Thupten
          Jul 13 '14 at 14:42





          what does xdg stand for? Its hard to remember without knowing that.

          – Thupten
          Jul 13 '14 at 14:42




          1




          1





          XDG stands for X Desktop Group aka freedesktop.org

          – Luca
          Jul 13 '14 at 19:05





          XDG stands for X Desktop Group aka freedesktop.org

          – Luca
          Jul 13 '14 at 19:05













          Still still works on a default Ubuntu 16.04 installation.

          – Andreas Hacker
          Mar 16 '17 at 11:20





          Still still works on a default Ubuntu 16.04 installation.

          – Andreas Hacker
          Mar 16 '17 at 11:20




          1




          1





          if the user once configured to open html files with a text editor by default, this will not work. OP asks for a way to open the web browser, not the default application for html files (even though by default it's the same)

          – Blauhirn
          Jun 29 '17 at 16:48







          if the user once configured to open html files with a text editor by default, this will not work. OP asks for a way to open the web browser, not the default application for html files (even though by default it's the same)

          – Blauhirn
          Jun 29 '17 at 16:48















          This will work on any gnu/linux distro that has x-server window manager (that is just about all of them - eg debian, *buntu, fedora, manjaro, Arch etc)

          – flurbius
          Dec 27 '17 at 19:58





          This will work on any gnu/linux distro that has x-server window manager (that is just about all of them - eg debian, *buntu, fedora, manjaro, Arch etc)

          – flurbius
          Dec 27 '17 at 19:58











          11














          You can also use:



          x-www-browser http://some-url.org


          And it will open the URL in the default browser.






          share|improve this answer



















          • 1





            for me, in Ubuntu 16.04, this will open Firefox even though Chromium is set as the default browser in the "Default Applications" setting.

            – Andreas Hacker
            Mar 16 '17 at 10:56
















          11














          You can also use:



          x-www-browser http://some-url.org


          And it will open the URL in the default browser.






          share|improve this answer



















          • 1





            for me, in Ubuntu 16.04, this will open Firefox even though Chromium is set as the default browser in the "Default Applications" setting.

            – Andreas Hacker
            Mar 16 '17 at 10:56














          11












          11








          11







          You can also use:



          x-www-browser http://some-url.org


          And it will open the URL in the default browser.






          share|improve this answer













          You can also use:



          x-www-browser http://some-url.org


          And it will open the URL in the default browser.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Aug 22 '11 at 9:50









          BenjaminBenjamin

          1,72273045




          1,72273045








          • 1





            for me, in Ubuntu 16.04, this will open Firefox even though Chromium is set as the default browser in the "Default Applications" setting.

            – Andreas Hacker
            Mar 16 '17 at 10:56














          • 1





            for me, in Ubuntu 16.04, this will open Firefox even though Chromium is set as the default browser in the "Default Applications" setting.

            – Andreas Hacker
            Mar 16 '17 at 10:56








          1




          1





          for me, in Ubuntu 16.04, this will open Firefox even though Chromium is set as the default browser in the "Default Applications" setting.

          – Andreas Hacker
          Mar 16 '17 at 10:56





          for me, in Ubuntu 16.04, this will open Firefox even though Chromium is set as the default browser in the "Default Applications" setting.

          – Andreas Hacker
          Mar 16 '17 at 10:56











          4














          With default Ubuntu setup only gnome-open command comes to mind.



          gnome-open http://askubuntu.com





          share|improve this answer



















          • 4





            With default Ubuntu setup, sensible-browser and xdg-open commands work as well.

            – marenostrum
            Oct 19 '10 at 12:38






          • 1





            The advantage is that you can use gnome-open for almost all file-types, URIs and directories. It's one command to learn, instead of trying to remember about obscure commands like sensible-browser

            – Stefan Lasiewski
            Oct 21 '10 at 18:19






          • 5





            @Stefan Lasiewski: xdg-open should do the same thing - actually, it will call gnome-open, or kde-open, or whatever, depending on your desktop environment. Thus it's more portable.

            – Piskvor
            Aug 22 '11 at 14:37











          • in Ubuntu 16.04, gnome-open is not installed by default

            – Andreas Hacker
            Mar 16 '17 at 10:55











          • gnome-open is dependent on gnome desktop, better off using xdg as its more common

            – flurbius
            Dec 27 '17 at 19:59
















          4














          With default Ubuntu setup only gnome-open command comes to mind.



          gnome-open http://askubuntu.com





          share|improve this answer



















          • 4





            With default Ubuntu setup, sensible-browser and xdg-open commands work as well.

            – marenostrum
            Oct 19 '10 at 12:38






          • 1





            The advantage is that you can use gnome-open for almost all file-types, URIs and directories. It's one command to learn, instead of trying to remember about obscure commands like sensible-browser

            – Stefan Lasiewski
            Oct 21 '10 at 18:19






          • 5





            @Stefan Lasiewski: xdg-open should do the same thing - actually, it will call gnome-open, or kde-open, or whatever, depending on your desktop environment. Thus it's more portable.

            – Piskvor
            Aug 22 '11 at 14:37











          • in Ubuntu 16.04, gnome-open is not installed by default

            – Andreas Hacker
            Mar 16 '17 at 10:55











          • gnome-open is dependent on gnome desktop, better off using xdg as its more common

            – flurbius
            Dec 27 '17 at 19:59














          4












          4








          4







          With default Ubuntu setup only gnome-open command comes to mind.



          gnome-open http://askubuntu.com





          share|improve this answer













          With default Ubuntu setup only gnome-open command comes to mind.



          gnome-open http://askubuntu.com






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Oct 19 '10 at 10:51









          kounryusuikounryusui

          87621015




          87621015








          • 4





            With default Ubuntu setup, sensible-browser and xdg-open commands work as well.

            – marenostrum
            Oct 19 '10 at 12:38






          • 1





            The advantage is that you can use gnome-open for almost all file-types, URIs and directories. It's one command to learn, instead of trying to remember about obscure commands like sensible-browser

            – Stefan Lasiewski
            Oct 21 '10 at 18:19






          • 5





            @Stefan Lasiewski: xdg-open should do the same thing - actually, it will call gnome-open, or kde-open, or whatever, depending on your desktop environment. Thus it's more portable.

            – Piskvor
            Aug 22 '11 at 14:37











          • in Ubuntu 16.04, gnome-open is not installed by default

            – Andreas Hacker
            Mar 16 '17 at 10:55











          • gnome-open is dependent on gnome desktop, better off using xdg as its more common

            – flurbius
            Dec 27 '17 at 19:59














          • 4





            With default Ubuntu setup, sensible-browser and xdg-open commands work as well.

            – marenostrum
            Oct 19 '10 at 12:38






          • 1





            The advantage is that you can use gnome-open for almost all file-types, URIs and directories. It's one command to learn, instead of trying to remember about obscure commands like sensible-browser

            – Stefan Lasiewski
            Oct 21 '10 at 18:19






          • 5





            @Stefan Lasiewski: xdg-open should do the same thing - actually, it will call gnome-open, or kde-open, or whatever, depending on your desktop environment. Thus it's more portable.

            – Piskvor
            Aug 22 '11 at 14:37











          • in Ubuntu 16.04, gnome-open is not installed by default

            – Andreas Hacker
            Mar 16 '17 at 10:55











          • gnome-open is dependent on gnome desktop, better off using xdg as its more common

            – flurbius
            Dec 27 '17 at 19:59








          4




          4





          With default Ubuntu setup, sensible-browser and xdg-open commands work as well.

          – marenostrum
          Oct 19 '10 at 12:38





          With default Ubuntu setup, sensible-browser and xdg-open commands work as well.

          – marenostrum
          Oct 19 '10 at 12:38




          1




          1





          The advantage is that you can use gnome-open for almost all file-types, URIs and directories. It's one command to learn, instead of trying to remember about obscure commands like sensible-browser

          – Stefan Lasiewski
          Oct 21 '10 at 18:19





          The advantage is that you can use gnome-open for almost all file-types, URIs and directories. It's one command to learn, instead of trying to remember about obscure commands like sensible-browser

          – Stefan Lasiewski
          Oct 21 '10 at 18:19




          5




          5





          @Stefan Lasiewski: xdg-open should do the same thing - actually, it will call gnome-open, or kde-open, or whatever, depending on your desktop environment. Thus it's more portable.

          – Piskvor
          Aug 22 '11 at 14:37





          @Stefan Lasiewski: xdg-open should do the same thing - actually, it will call gnome-open, or kde-open, or whatever, depending on your desktop environment. Thus it's more portable.

          – Piskvor
          Aug 22 '11 at 14:37













          in Ubuntu 16.04, gnome-open is not installed by default

          – Andreas Hacker
          Mar 16 '17 at 10:55





          in Ubuntu 16.04, gnome-open is not installed by default

          – Andreas Hacker
          Mar 16 '17 at 10:55













          gnome-open is dependent on gnome desktop, better off using xdg as its more common

          – flurbius
          Dec 27 '17 at 19:59





          gnome-open is dependent on gnome desktop, better off using xdg as its more common

          – flurbius
          Dec 27 '17 at 19:59











          2














          I played around this a little.
          There is a problem with gnome-open — it won't invoke the default web browser unless you specify a url.
          That's a problem if you want to set up an icon or a shortcut that will always launch the browser that is set as default.
          Other times you might need to set it as a parameter for some programs that require a link to a web browser and don't work well with gnome-open (e.g.: acroread).
          You might solve this by using either x-www-browser or gnome-www-browser system links that you can set up through update-alternatives, but those are system wide settings, not user specific (and they are not synchronized with the values set through gnome-default-applications-properties.
          All this can be solved by opening the sensible-browserexecutable (which is actually a script):



          sudo gedit $(which sensible-browser)


          and adding this at the beginning:



          #!/bin/bash
          BROWSER=$(gconftool -g /desktop/gnome/url-handlers/http/command)
          export BROWSER="${BROWSER//""%s""/}"


          That will make sensible-browser always launch the user-specified default web browser.
          (I found out that gnome-default-applications-properties changes some gconf keys according to the browser that is currently set. The default browser value can be obtained from any of these keys so I went for /desktop/gnome/url-handlers/http/command and used it to fill the $BROWSER variable (the value is stripped of the "%s" part). )






          share|improve this answer





















          • 1





            I wouldn't recommend editing /usr/bin/sensible-browser as this answer recommends. This change will be overwritten on a system upgrade.

            – Gilles
            Feb 21 '14 at 11:53











          • rather than try to install a modified script on a users system, a more realistic solution is to use xdg-open as per Luca's answer. If you specify a html file or a URL it WILL open the browser - if you supply something else it will open an appropriate application for that type of resource. I doubt there is any good reason to open some file with a browser when it will be better handled by some other application, either by default or in accordance with the users explicit choice. If you must, you can force the browser to open it with x-www-browser (see Benjamin's answer)

            – flurbius
            Dec 27 '17 at 20:34
















          2














          I played around this a little.
          There is a problem with gnome-open — it won't invoke the default web browser unless you specify a url.
          That's a problem if you want to set up an icon or a shortcut that will always launch the browser that is set as default.
          Other times you might need to set it as a parameter for some programs that require a link to a web browser and don't work well with gnome-open (e.g.: acroread).
          You might solve this by using either x-www-browser or gnome-www-browser system links that you can set up through update-alternatives, but those are system wide settings, not user specific (and they are not synchronized with the values set through gnome-default-applications-properties.
          All this can be solved by opening the sensible-browserexecutable (which is actually a script):



          sudo gedit $(which sensible-browser)


          and adding this at the beginning:



          #!/bin/bash
          BROWSER=$(gconftool -g /desktop/gnome/url-handlers/http/command)
          export BROWSER="${BROWSER//""%s""/}"


          That will make sensible-browser always launch the user-specified default web browser.
          (I found out that gnome-default-applications-properties changes some gconf keys according to the browser that is currently set. The default browser value can be obtained from any of these keys so I went for /desktop/gnome/url-handlers/http/command and used it to fill the $BROWSER variable (the value is stripped of the "%s" part). )






          share|improve this answer





















          • 1





            I wouldn't recommend editing /usr/bin/sensible-browser as this answer recommends. This change will be overwritten on a system upgrade.

            – Gilles
            Feb 21 '14 at 11:53











          • rather than try to install a modified script on a users system, a more realistic solution is to use xdg-open as per Luca's answer. If you specify a html file or a URL it WILL open the browser - if you supply something else it will open an appropriate application for that type of resource. I doubt there is any good reason to open some file with a browser when it will be better handled by some other application, either by default or in accordance with the users explicit choice. If you must, you can force the browser to open it with x-www-browser (see Benjamin's answer)

            – flurbius
            Dec 27 '17 at 20:34














          2












          2








          2







          I played around this a little.
          There is a problem with gnome-open — it won't invoke the default web browser unless you specify a url.
          That's a problem if you want to set up an icon or a shortcut that will always launch the browser that is set as default.
          Other times you might need to set it as a parameter for some programs that require a link to a web browser and don't work well with gnome-open (e.g.: acroread).
          You might solve this by using either x-www-browser or gnome-www-browser system links that you can set up through update-alternatives, but those are system wide settings, not user specific (and they are not synchronized with the values set through gnome-default-applications-properties.
          All this can be solved by opening the sensible-browserexecutable (which is actually a script):



          sudo gedit $(which sensible-browser)


          and adding this at the beginning:



          #!/bin/bash
          BROWSER=$(gconftool -g /desktop/gnome/url-handlers/http/command)
          export BROWSER="${BROWSER//""%s""/}"


          That will make sensible-browser always launch the user-specified default web browser.
          (I found out that gnome-default-applications-properties changes some gconf keys according to the browser that is currently set. The default browser value can be obtained from any of these keys so I went for /desktop/gnome/url-handlers/http/command and used it to fill the $BROWSER variable (the value is stripped of the "%s" part). )






          share|improve this answer















          I played around this a little.
          There is a problem with gnome-open — it won't invoke the default web browser unless you specify a url.
          That's a problem if you want to set up an icon or a shortcut that will always launch the browser that is set as default.
          Other times you might need to set it as a parameter for some programs that require a link to a web browser and don't work well with gnome-open (e.g.: acroread).
          You might solve this by using either x-www-browser or gnome-www-browser system links that you can set up through update-alternatives, but those are system wide settings, not user specific (and they are not synchronized with the values set through gnome-default-applications-properties.
          All this can be solved by opening the sensible-browserexecutable (which is actually a script):



          sudo gedit $(which sensible-browser)


          and adding this at the beginning:



          #!/bin/bash
          BROWSER=$(gconftool -g /desktop/gnome/url-handlers/http/command)
          export BROWSER="${BROWSER//""%s""/}"


          That will make sensible-browser always launch the user-specified default web browser.
          (I found out that gnome-default-applications-properties changes some gconf keys according to the browser that is currently set. The default browser value can be obtained from any of these keys so I went for /desktop/gnome/url-handlers/http/command and used it to fill the $BROWSER variable (the value is stripped of the "%s" part). )







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Feb 21 '14 at 11:52









          Gilles

          44.7k13101140




          44.7k13101140










          answered Feb 25 '11 at 13:15







          user11456















          • 1





            I wouldn't recommend editing /usr/bin/sensible-browser as this answer recommends. This change will be overwritten on a system upgrade.

            – Gilles
            Feb 21 '14 at 11:53











          • rather than try to install a modified script on a users system, a more realistic solution is to use xdg-open as per Luca's answer. If you specify a html file or a URL it WILL open the browser - if you supply something else it will open an appropriate application for that type of resource. I doubt there is any good reason to open some file with a browser when it will be better handled by some other application, either by default or in accordance with the users explicit choice. If you must, you can force the browser to open it with x-www-browser (see Benjamin's answer)

            – flurbius
            Dec 27 '17 at 20:34














          • 1





            I wouldn't recommend editing /usr/bin/sensible-browser as this answer recommends. This change will be overwritten on a system upgrade.

            – Gilles
            Feb 21 '14 at 11:53











          • rather than try to install a modified script on a users system, a more realistic solution is to use xdg-open as per Luca's answer. If you specify a html file or a URL it WILL open the browser - if you supply something else it will open an appropriate application for that type of resource. I doubt there is any good reason to open some file with a browser when it will be better handled by some other application, either by default or in accordance with the users explicit choice. If you must, you can force the browser to open it with x-www-browser (see Benjamin's answer)

            – flurbius
            Dec 27 '17 at 20:34








          1




          1





          I wouldn't recommend editing /usr/bin/sensible-browser as this answer recommends. This change will be overwritten on a system upgrade.

          – Gilles
          Feb 21 '14 at 11:53





          I wouldn't recommend editing /usr/bin/sensible-browser as this answer recommends. This change will be overwritten on a system upgrade.

          – Gilles
          Feb 21 '14 at 11:53













          rather than try to install a modified script on a users system, a more realistic solution is to use xdg-open as per Luca's answer. If you specify a html file or a URL it WILL open the browser - if you supply something else it will open an appropriate application for that type of resource. I doubt there is any good reason to open some file with a browser when it will be better handled by some other application, either by default or in accordance with the users explicit choice. If you must, you can force the browser to open it with x-www-browser (see Benjamin's answer)

          – flurbius
          Dec 27 '17 at 20:34





          rather than try to install a modified script on a users system, a more realistic solution is to use xdg-open as per Luca's answer. If you specify a html file or a URL it WILL open the browser - if you supply something else it will open an appropriate application for that type of resource. I doubt there is any good reason to open some file with a browser when it will be better handled by some other application, either by default or in accordance with the users explicit choice. If you must, you can force the browser to open it with x-www-browser (see Benjamin's answer)

          – flurbius
          Dec 27 '17 at 20:34











          -2














          Follow below commands :





          1. $ type -a Firefox : This gives path to firefox application


          2. $ /usr/bin/firefox www.facebook.com : This opens a tab with www.facebook.com






          share|improve this answer










          New contributor




          Simpy Parveen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.
















          • 3





            Firefox is not always the default web browser

            – storm
            Jan 18 at 8:05











          • ofcourse, we can use another browser, as per the choice

            – Simpy Parveen
            Jan 18 at 18:26











          • Why wouldn't you just run firefox directly instead of getting the path and then running the path? At any rate, the answer misses the point: the question is about running the default browser, not Firefox.

            – Olorin
            yesterday
















          -2














          Follow below commands :





          1. $ type -a Firefox : This gives path to firefox application


          2. $ /usr/bin/firefox www.facebook.com : This opens a tab with www.facebook.com






          share|improve this answer










          New contributor




          Simpy Parveen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.
















          • 3





            Firefox is not always the default web browser

            – storm
            Jan 18 at 8:05











          • ofcourse, we can use another browser, as per the choice

            – Simpy Parveen
            Jan 18 at 18:26











          • Why wouldn't you just run firefox directly instead of getting the path and then running the path? At any rate, the answer misses the point: the question is about running the default browser, not Firefox.

            – Olorin
            yesterday














          -2












          -2








          -2







          Follow below commands :





          1. $ type -a Firefox : This gives path to firefox application


          2. $ /usr/bin/firefox www.facebook.com : This opens a tab with www.facebook.com






          share|improve this answer










          New contributor




          Simpy Parveen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.










          Follow below commands :





          1. $ type -a Firefox : This gives path to firefox application


          2. $ /usr/bin/firefox www.facebook.com : This opens a tab with www.facebook.com







          share|improve this answer










          New contributor




          Simpy Parveen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          share|improve this answer



          share|improve this answer








          edited Jan 18 at 6:48









          Nisse Engström

          301246




          301246






          New contributor




          Simpy Parveen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          answered Jan 18 at 4:43









          Simpy ParveenSimpy Parveen

          1




          1




          New contributor




          Simpy Parveen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.





          New contributor





          Simpy Parveen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.






          Simpy Parveen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.








          • 3





            Firefox is not always the default web browser

            – storm
            Jan 18 at 8:05











          • ofcourse, we can use another browser, as per the choice

            – Simpy Parveen
            Jan 18 at 18:26











          • Why wouldn't you just run firefox directly instead of getting the path and then running the path? At any rate, the answer misses the point: the question is about running the default browser, not Firefox.

            – Olorin
            yesterday














          • 3





            Firefox is not always the default web browser

            – storm
            Jan 18 at 8:05











          • ofcourse, we can use another browser, as per the choice

            – Simpy Parveen
            Jan 18 at 18:26











          • Why wouldn't you just run firefox directly instead of getting the path and then running the path? At any rate, the answer misses the point: the question is about running the default browser, not Firefox.

            – Olorin
            yesterday








          3




          3





          Firefox is not always the default web browser

          – storm
          Jan 18 at 8:05





          Firefox is not always the default web browser

          – storm
          Jan 18 at 8:05













          ofcourse, we can use another browser, as per the choice

          – Simpy Parveen
          Jan 18 at 18:26





          ofcourse, we can use another browser, as per the choice

          – Simpy Parveen
          Jan 18 at 18:26













          Why wouldn't you just run firefox directly instead of getting the path and then running the path? At any rate, the answer misses the point: the question is about running the default browser, not Firefox.

          – Olorin
          yesterday





          Why wouldn't you just run firefox directly instead of getting the path and then running the path? At any rate, the answer misses the point: the question is about running the default browser, not Firefox.

          – Olorin
          yesterday


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Ask Ubuntu!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f8252%2fhow-to-launch-default-web-browser-from-the-terminal%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          How did Captain America manage to do this?

          迪纳利

          南乌拉尔铁路局