Web Info and IT Lessons Blog...

Thursday 17 December 2020

Install Google Chrome On Ubuntu 20.04

Steps to install google chrome:

1. Open terminal either by pressing Ctrl+Alt+T on keyboard or by searching for ‘terminal’ from system application menu.
2. When terminal opens, copy the command given below, paste in terminal and run it:

wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
Running the above command will ask for system user passord, write the password and hit enter.

3. Add the repository to your system via below command:

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

4. Refresh the system package cache and install the stable version of Google Chrome via below commands.

sudo apt update
sudo apt install google-chrome-stable

How to un-install google chrome:

Performing uninstallation action on google chrome is a simple one step process and can be done by running the command below:

sudo apt remove google-chrome-stable

No comments:

Post a Comment