Ubuntu

How to install google chrome on ubuntu 20.04

Google chrome is a most popular web browser developed by google.
It was developed to compete with firefox. In this article, we will see about how to install google chrome on ubuntu 20.04.

Google chrome is cross platform web browser which supports mostly all platforms like Linux, Windows, MacOS, Android, IOS and even more.
It is fast, secure and reliable. In addition, It has many features and large number of extensions to support various functionalities.
But there is a big disadvantage, It consumes more CPU and memory when compared to other popular browsers.

Install Google chrome on Ubuntu 20.04

There are many ways to install software on Ubuntu. We will see how to install google chrome using below 2 methods.
1) Using repository
2) Manual method

Using repository

We can install google chrome by adding chrome official repository url to the sources list. This method is recommended since it will install software along with dependencies.
Step 1. Add chrome repository by using the below command. This command will create a new file with chrome repository details.
sudo bash -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
Step 2. Now add the signing key for the repository.
sudo wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
Step 3. Update the apt cache so that it will get the package list from the added repository.
sudo apt update
Step 4. Finally, Install google chrome by typing below command.
sudo apt install google-chrome-stable
Step 5. Now you can launch google chrome using application launcher.

Manual method

In Manual method, We can install after manually downloading the software and install using apt.
Step 1. Download google chrome debian package using below command. Software will be downloaded to the current directory.
wget https://dl-ssl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
Step 2. Check the downloaded file and give execute permission.
user@krizna:~$ ls -l google-*
-rw-rw-r-- 1 user user 66985784 May 2 2020 google-chrome-stable_current_amd64.deb

Give execute permission to install the downloaded file.
chmod +x google-chrome-stable_current_amd64.deb
Step 3. Finally, Install the software using below command. This command will install software with dependencies.
sudo apt install ./google-chrome-stable_current_amd64.deb
Step 4. similarly, you can launch google chrome using launcher.

See Also,
How to install MySQL workbench on ubuntu 20.04

Disqus Comments Loading...
Share
Published by
krizna

Recent Posts

How to install Visual Studio Code on ubuntu 20.04

Visual Studio Code is a popular code editor which is lightweight and cross platform application.…

4 years ago

How to install MySQL workbench on ubuntu 20.04

MySQL workbench is a GUI tool for managing MySQL database system. It is used by…

4 years ago

How to install Android Studio on ubuntu 20.04

Android Studio is a popular development software used especially for developing android applications. It is…

4 years ago

How to install Zoom on ubuntu 20.04

Zoom is a popular video conferencing software. It is commonly used for conducting online meetings,…

4 years ago

How to install TeamViewer on ubuntu 20.04

TeamViewer is a popular application for desktop sharing and remote control. It is available for…

4 years ago

How to install Anydesk on ubuntu 20.04

Anydesk is the most popular remote desktop connectivity tool. It is available for all platforms…

4 years ago