Install Google Chrome Browser on Ubuntu 20.04

|
Last Updated:
|
|

If you installed the minimal Ubuntu 20.04, chances are, you do not have Chrome browser installed. Therefore, follow this guide to learn how to install Google Chrome Browser on Ubuntu 20.04.

Installing Google Chrome on Ubuntu 20.04

You can install Google Chrome browser by downloading the Debian binary package or by simply installing the Chrome sources lists and then installing the Chrome browser from these sources lists.

Update System Package Cache

Before you can proceed, update your package cache.

apt update

Install Chrome using DEB Binary Package

Download Google Chrome DEB binary package from Google Chrome page.

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

Then install it using APT so as to deal with required dependencies automatically.

apt install /tmp/google-chrome-stable_current_amd64.deb

Install Chrome from Chrome Repos

Google Chrome browser can be installed through the Google Chrome PPA repositories. Therefore, install the repository signing key.

wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -

Next, install the Google Chrome PPA repos on Ubuntu 20.04.

echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google.list

Update package cache.

apt update

Then install latest Google Chrome browser;

apt install google-chrome-stable

The latest Google Chrome browser has been installed on Ubuntu 20.04;

google-chrome --version
Google Chrome 81.0.4044.113
google-chrome-stable --version
Google Chrome 81.0.4044.113

Want to run Google Chrome on browser? See man pages on the options you can use;

man google-chrome
man google-chrome-stable

Running Google Chrome Browser on Ubuntu 20.04

You can now launch Google Chrome browser from activities on Ubuntu 20.04.

Install Google Chrome Browser on Ubuntu 20.04

You can as well launch Google chrome browser from your terminal by running either of the commands below;

google-chrome

or

google-chrome-stable

And there you go!!

chrome

That is how easy the installation of Google Chrome Browser on Ubuntu 20.04 is.

Related Tutorials;

How to Install AnyDesk on Ubuntu 20.04

Install and Setup ZSH and Oh-My-Zsh on Ubuntu 20.04

Install VirtualBox Guest Additions on Ubuntu 20.04

SUPPORT US VIA A VIRTUAL CUP OF COFFEE

We're passionate about sharing our knowledge and experiences with you through our blog. If you appreciate our efforts, consider buying us a virtual coffee. Your support keeps us motivated and enables us to continually improve, ensuring that we can provide you with the best content possible. Thank you for being a coffee-fueled champion of our work!

Photo of author
koromicha
I am the Co-founder of Kifarunix.com, Linux and the whole FOSS enthusiast, Linux System Admin and a Blue Teamer who loves to share technological tips and hacks with others as a way of sharing knowledge as: "In vain have you acquired knowledge if you have not imparted it to others".

1 thought on “Install Google Chrome Browser on Ubuntu 20.04”

Leave a Comment