How to Install Google on Ubuntu 20.04 LTS Focal Fossa.

Enter the following command in terminal to create a source 
list file for Google Chrome browser. vim is a text editor, which                                                                                                                                       
you to edit terminal & text files . 
1:- Open the terminal and type hit enter & give the password
sudo vim /etc/apt/sources.list.d/google-chrome.list
2:- Next, type some text line in google-chrome list file.
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main

hit esc :wq to save the file 
3:-After that, run the following command to download Google’s signing key.
wget https://dl.google.com/linux/linux_signing_key.pub


4:-Then use apt-key to add it to your keyring so the package manager can verify the integrity of Google Chrome deb package.
sudo apt-key add linux_signing_key.pub




5:- now update the package list 
apt-get update 
6:-now install the google chrome 
sudo apt install google-chrome-stable
7:- To start Chrome browser from the command line, run:
google-chrome-stable


Comments