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).
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
cd ~/Downloads
sudo dpkg -i google-chrome-stable_current_amd64.deb
sudo apt-get install -f
Once the installation is complete, you can launch Google Chrome either from the terminal using the command google-chrome or from the application menu.
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.
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
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'
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
Once the installation is finished, you can start Google Chrome from the application menu or the terminal using the command chromium-browser.
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.
This public beta enables the full Ubuntu Desktop experience on the Qualcomm Dragonwing™ QCS6490 and…
Time is running out to be in full compliance with the EU Cyber Resilience Act,…
Identity management is vitally important in cybersecurity. Every time someone tries to access your networks,…
Welcome to the Ubuntu Weekly Newsletter, Issue 889 for the week of April 20 –…
Introduction I just returned from RubyKaigi 2025, which ran from April 16th to 18th at…
One of my favourite authors, Douglas Adams, once said that “we are stuck with technology…