Google Chrome is the most widely used web browser. It is simple to use but can manage complicated tasks efficiently. While performing your necessary tasks on Chrome, you may face some bugs and errors. Therefore, you must keep your Google Chrome up to date.
Updating Chrome will ensure the installation of the updated security and performance features, especially speed and performance.
Here is a complete procedural guide for you to update Google Chrome on Ubuntu 22.04.
How to Update Google Chrome on Ubuntu 22.04??
These are the simple methods to update Google Chrome on your system:
- Method 1: How to Update Google Chrome on Ubuntu 22.04?
- Method 2: How to Reinstall Google Chrome on Ubuntu 22.04?
Method 1: How to Update Google Chrome on Ubuntu 22.04?
In this method, you will be demonstrated how to utilize the APT package manager to update Google Chrome on your Ubuntu 22.04 system.
Step 1: Check the Existing Google Chrome
Before you start the updating process, you need to check the existing version of your Installed Google Chrome through the “–version” option:
google-chrome --version

The existing version of Google Chrome on your Ubuntu system is “123.0.6312.58”. In the next step, we will demonstrate how to upgrade Google Chrome to the latest release.
Step 2: Update Google Chrome via APT
In the APT package manager, the “–only-upgrade” option can be used to update packages like Google Chrome:
sudo apt install --only-upgrade google-chrome-stable

Alternatively, you can utilize the below command to update Google Chrome to the newest version:
sudo apt upgrade google-chrome-stable

According to the above screenshot, your Ubuntu 22.04 system already has the latest release of Google Chrome installed.
Method 2: How to Reinstall the Google Chrome on Ubuntu 22.04
Follow this method to reinstall Google Chrome on your Ubuntu 22.04.
Step 1: Remove The Current Version of Google Chrome
To update Google Chrome on your system, you are required to remove the existing version:
sudo apt purge --auto-remove google-chrome-stable -y

The command executed above will completely remove Google Chrome from your system, including its configuration files.
Step 2: Download Google Chrome GPG Key
After removing the current installation of Google Chrome from your system, let’s start to download the newest release using the GPG key:
curl -fsSL https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo gpg --dearmor -o /usr/share/keyrings/google-chrome-keyring.gpg

The Google Chrome GPG key has been downloaded to your local machine.
Step 3: Add Google Chrome Repository
Execute the command to add Google Chrome repository to the system’s sources list:
echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/google-chrome-keyring.gpg] https://dl.google.com/linux/chrome/deb/ stable main' | sudo tee /etc/apt/sources.list.d/google-chrome.list

The above output indicates that you have successfully added the Chrome repository to the path “/etc/apt/sources.list.d/”.
Step 4: Update System Repository
With the “update” command, refresh and update your Ubuntu 22.04 system repository to incorporate the Google Chrome repository:
sudo apt update

When the command executes, you will notice the newly added repository (Google Chrome) in the list.
Step 5: Install Updated Google Chrome
Finally, you can run the installation command to configure the Google Chrome on your Ubuntu 22.04 machine:
sudo apt install google-chrome-stable -y


While installing the necessary files, you can inspect the version number of Google Chrome.
Step 6: Check Version Number
After installation, confirm that Google Chrome is updated by checking its version:
google-chrome --version

Here, you can see the updated Chrome version on your Ubuntu 22.04 system.
FAQs
How can I update Google Chrome on my Ubuntu 22.04?
You can use the commands: “sudo apt install –only-upgrade google-chrome-stable” or “sudo apt upgrade google-chrome-stable” to update Google Chrome to the newest version on your Ubuntu 22.04.
Is there any alternative method for updating Google Chrome on my Ubuntu 22.04?
Yes, you can reinstall Google Chrome with an updated version by adding the repository key to the system source list and then installing Chrome using the APT package installer.
Conclusion
Ubuntu 22.04 enables you to install the newest updates for Google Chrome. You can use “sudo apt install –only-upgrade google-chrome-stable”, or you can reinstall the updated version of Google Chrome on your system.