How to Uninstall Google Chrome in Ubuntu 22.04?

By Hardik Savani October 2, 2023 Category : Ubuntu

Hey,

This simple article demonstrates of how to uninstall google chrome in ubuntu. This article goes in detailed on how to uninstall google chrome in ubuntu 22.04 using terminal. we will help you to give an example of how to remove google chrome ubuntu 22.04. This tutorial will give you a simple example of how to remove google chrome completely from ubuntu. So, let's follow a few steps to create an example of how to uninstall google chrome in ubuntu.

You can uninstall Google Chrome in Ubuntu using the Terminal by following these step-by-step instructions:

Step 1: Open the Terminal

Press `Ctrl + Alt + T` on your keyboard to open the Terminal. You can also search for "Terminal" in the Ubuntu Dash or press `Super` (Windows key) to open the application launcher and type "Terminal" to find and open it.

Step 2: Check if Google Chrome is installed

Before uninstalling Google Chrome, it's a good idea to check if it's installed on your system. You can do this by running the following command:

google-chrome --version

If Google Chrome is installed, you will see the version information. If it's not installed, you will receive an error message.

Step 3: Uninstall Google Chrome

Assuming Google Chrome is installed, you can uninstall it using the following command:

sudo apt-get purge google-chrome-stable

This command will remove Google Chrome along with its configuration files.

Step 4: Remove leftover dependencies (optional)

You can also remove any residual configuration files and dependencies by running the following command:

sudo apt-get autoremove

This command will remove any packages that were automatically installed to support Google Chrome but are no longer needed.

Step 5: Verify the uninstallation (optional)

To make sure that Google Chrome has been successfully uninstalled, you can attempt to run the `google-chrome` command again:

google-chrome --version

You should receive an error message indicating that the command is not found, which confirms that Google Chrome has been uninstalled.

That's it! Google Chrome should now be completely uninstalled from your Ubuntu system.

I hope it can help you...

Tags :
Shares