How to completely remove chromium browser from Ubuntu 18.04

14,982

Solution 1

did you try to do this?

sudo apt purge --remove chromium-browser -y
sudo apt autoremove && sudo apt autoclean -y

Please be aware that it will delete all user saved bookmarks, history etc once you enter these commands.

Assuming you are using Ubuntu, click on the dash button in the launcher and search for 'System info'. Then, open 'System info' and move to 'Default applications' section. Then, click on the dropdown list next to Web. There, select 'Google Chrome' and it will be selected as the default web browser for your system.

enter image description here

Using GUI - If you want to delete the settings from gnome [GUI], you must delete the config folder for that user (placed in its home, as a hidden folder, thus the . at the start of the name).

You may delete that folder using the terminal or you may open the home folder in Nautilus and press Ctrl+H to show the hidden files and folders, then delete the folder you want to delete as you would do with any other file.

Solution 2

I could not remove chromium with apt and it took me a while to figure out that it was installed with snap. To remove it run this in a console:

sudo snap remove chromium
Share:
14,982
user9371654
Author by

user9371654

Updated on September 18, 2022

Comments

  • user9371654
    user9371654 over 1 year

    I installed chromium using:

    sudo apt-get install chromium-browser
    

    Then I want to completely remove it. I used:

    sudo apt-get remove chromium --purge
    rm -rf ~/.config/chromium
    rm -rf ~/.cache/chromium
    sudo rm -rf /etc/chromium
    

    But it is still there. If I click Activities and type Chrom.. I see Chromium. And when I click it it open the Chromium browser. I do not want to see it in my computer. How to remove it.

    • pLumo
      pLumo over 5 years
      you install chromium-browser but uninstall chromium.
    • user9371654
      user9371654 over 5 years
      I do not get what are the difference between Chromium-browser, google-chrome, and chromium? Very confusing.
    • pLumo
      pLumo over 5 years
      chromium-browser is just the package name for chromium in Ubuntu, probably because chromium itself was taken ?! Google Chrome is a browser from Chrome that is built on chromium project.
  • Shaze
    Shaze over 5 years
    also delete/remove sudo rm -rf ~/.config/chromium
  • user9371654
    user9371654 over 5 years
    No problem. I installed it by mistake. I want to remove it. Will it delete its configurations too? Because I want to install Google Chrome and want the Coogle Chrome's default configurations.
  • Shaze
    Shaze over 5 years
    yes, it will delete everything - which means your Chromium browser's configurations, extensions, plugins etc. But your question states you want to completely remove it! It wont interfere with the google-chrome stable browser though. worry not.
  • user9371654
    user9371654 over 5 years
    I want to remove Chromium (which has blue logo). I want to install Google Chrome (colored logo: Red, Green, Yellow). Of course not because of colors. But what I need for my experiment in Google Chrome.
  • user9371654
    user9371654 over 5 years
    And I care about Google Chrome default configurations. So i do not want to retain any other thing (Chromium-browser) configurations.
  • Shaze
    Shaze over 5 years
    it will remove only chromium browsers dependencies, it wont delete anything from google-chrome-stable browser.