Categories: UbuntuUbuntu Feed

How to Install Google Chrome on Ubuntu 22.04

Ubuntu 22.04, being a popular Linux distribution, offers a myriad of software packages directly from its repositories. However, certain proprietary software like Google Chrome is not available by default. Fear not, for there are easy methods to get this popular web browser installed.

This article will guide you through the installation of Google Chrome on Ubuntu 22.04 using two methods: Debian package and Personal Package Archive (PPA).

Method 1: Download and Install Google Chrome Debian Package

Step 1: Download Google Chrome

  1. Visit the official Google Chrome download page.
  2. Click the “Download Chrome” button.
  3. Choose the “64
    Sponsored
    bit .deb (For Debian/Ubuntu)”
    option.
  4. Click “Accept and Install”.

Save the .deb file to your preferred location, typically the Downloads folder.

Alternatively, you can also download latest Google Chrome Debian package via the following command:

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb 

Step 2: Install Google Chrome

  1. Open a terminal by pressing Ctrl + Alt + T.
  2. Navigate to the location where you saved the .deb file, usually with the command:
    cd ~/Downloads 
    
  3. Install the package using the following command:
    sudo dpkg -i google-chrome-stable_current_amd64.deb 
    
  4. In the event you encounter any dependency issues, resolve them using:
    sudo apt-get install -f 
    
Installing google chrome

Step 3: Launch Google Chrome

Once the installation is complete, you can launch Google Chrome either from the terminal using the command google-chrome or from the application menu.

Method 2: Installing Google Chrome Using the Official PPA

Although Google doesn’t provide an official PPA for Chrome, you can use an unofficial one that will help you get updates through the package manager.

Step 1: Add the GPG Key of the Repository

Open a terminal (Ctrl + Alt + T) and execute the following command to add the GPG key of the repository to your system:

wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo gpg --dearmour -o /usr/share/keyrings/chrome-keyring.gpg 

In the above command GPG keyring is stored it at: /usr/share/keyrings/chrome-keyring.gpg

Sponsored

Step 2: Adding the Chrome PPA

Using the above GPG keyring file, execute the below command to configure the official Google Chrome PPA on your Ubuntu system:

sudo sh -c 'echo "deb [arch=amd64 signed-by=/usr/share/keyrings/chrome-keyring.gpg] http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list' 

Step 3: Update Package Lists and Install

Your system is ready for the Google chrome installation. First update the package list:

sudo apt update 

Finally execute the following command to install Google Chrome web browser on your Ubuntu 22.04 LTS Linux system.

sudo apt install google-chrome-stable 

Step 4: Launch Google Chrome

Once the installation is finished, you can start Google Chrome from the application menu or the terminal using the command chromium-browser.

Launch google chrome on ubuntu

Conclusion

Whether you opt for the direct Debian package method or the PPA approach, installing Google Chrome on Ubuntu 22.04 is straightforward. Remember, while the PPA method is unofficial, it can be handy for getting updates through Ubuntu’s package manager. Whichever method you choose, you’ll have access to one of the world’s most popular web browsers on your Ubuntu machine.

The post How to Install Google Chrome on Ubuntu 22.04 appeared first on TecAdmin.

Ubuntu Server Admin

Recent Posts

Canonical Releases Ubuntu 25.04 Plucky Puffin

The latest interim release of Ubuntu introduces “devpacks” for popular frameworks like Spring, along with…

2 days ago

Ubuntu 25.04 (Plucky Puffin) Released

Ubuntu 25.04, codenamed “Plucky Puffin”, is here. This release continues Ubuntu’s proud tradition of integrating…

2 days ago

Extended Security Maintenance for Ubuntu 20.04 (Focal Fossa) begins May 29, 2025

Ubuntu released its 20.04 (Focal Fossa) release 5 years ago, on March 23, 2020. As…

3 days ago

Ubuntu 20.04 LTS End Of Life – activate ESM to keep your fleet of devices secure and operational

Focal Fossa will reach the End of Standard Support in May 2025, also known as…

4 days ago

Ubuntu MATE 25.04 Release Notes

Ubuntu MATE 25.04 is ready to soar! 🪽 Celebrating our 10th anniversary as an official…

4 days ago

Ubuntu Weekly Newsletter Issue 887

Welcome to the Ubuntu Weekly Newsletter, Issue 887 for the week of April 6 –…

5 days ago