Can't set Chromium as default browser

9,621

Solution 1

Try changing your your preferred browser.

17.10+

Settings > Details > Default Applications

screenshot

On older versions

  1. Open Preferred Applications from Preferences > Preferred Appplications.

    enter image description here

  2. Change the default Web Browser to your liking.

    enter image description here

Solution 2

To change the browser globally, run the next command in a terminal:

sudo update-alternatives --config x-www-browser

Enter the number of chromium-browser and press Enter to confirm it.

Solution 3

Start google-chrome from a terminal in the foreground (leave off the &):

me:/home/me> google-chrome

Click on the prompt to make chrome the default browser.... notice that it is getting a permissions problem on .local/share/applications/mimeapps.list. The applications directory is owned by root and chrome was running as me. In order to fix the problem, I used:

chown -R me.me .local

Then I restarted google-chrome. It created the following entries in

cat .local/share/applications/mimeapps.list

[Default Applications]
text/html=google-chrome.desktop
text/xml=google-chrome.desktop
x-scheme-handler/http=google-chrome.desktop
x-scheme-handler/https=google-chrome.desktop
x-scheme-handler/about=google-chrome.desktop
x-scheme-handler/unknown=google-chrome.desktop

I suppose you could just create those entries in the file if there is a security problem with changing the owner of the .local directory.

Share:
9,621

Related videos on Youtube

1passenger
Author by

1passenger

Updated on September 18, 2022

Comments

  • 1passenger
    1passenger almost 2 years

    I open Chromium and the browser ask me if I want to set it as my default browser. I click on "set as default" and close the browser.

    But when I open Chromium again I get the same question. Ubuntu 11.04 seems not to set Chromium correctly as my default browser.

    How to fix that?

  • Code.Decode
    Code.Decode about 13 years
    It's definitely worth trying to set it through Preferred Applications. There was (and possibly still is) a strange bug if you didn't set it this way.
  • 1passenger
    1passenger about 13 years
    That's not working...
  • Seamus
    Seamus about 13 years
    update-alternatives should work (note the extra s)
  • 1passenger
    1passenger about 13 years
    That's it! After changing the settings in Preferred Applications and setting Chromium as default browser again everything is working fine. Maybe a problem with a restore of an Ubuntu 10.10 backup.
  • Lekensteyn
    Lekensteyn about 13 years
    @1passenger: the s after update-alternative slipped out. Try the new command.
  • 1passenger
    1passenger about 13 years
    I had to wait a minute ;-) Now it's accepted. Thanx. :-)
  • 1passenger
    1passenger about 13 years
    Sorry, mistake in writing. I meant update-alternatives and not update-alternative.
  • keiki
    keiki over 10 years
    Somehow I had two /usr/bin/chromium-browser in the list. One in auto and one in manual mode, but the manual one was selected. After I changed to the auto one it works.