Tuesday, February 3, 2026

Google

 LINEX

To completely uninstall Google Chrome do the following:

  1. Run the following command to remove Google Chrome along with any dependencies:

    sudo apt purge --auto-remove google-chrome-stable
    
  2. Run the following command to remove the Google Chrome repository:

    sudo rm /etc/apt/sources.list.d/google-chrome.list*
    
  3. Run the following command to remove Google Chrome directories in your ~ directory:

    rm -rf ~/{.cache,.config}/google-chrome
    

If you'd like to do all the above in one line, you can run:

sudo apt purge --auto-remove google-chrome-stable && sudo rm /etc/apt/sources.list