Enter the following command in terminal to create a source
list file for Google Chrome browser. vim is a text editor, whichyou to edit terminal & text files .1:- Open the terminal and type hit enter & give the passwordsudo vim /etc/apt/sources.list.d/google-chrome.list2:- Next, type some text line in google-chrome list file. deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable mainhit esc :wq to save the file3:-After that, run the following command to download Google’s signing key. wget https://dl.google.com/linux/linux_signing_key.pub4:-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.pub5:- now update the package list apt-get update 6:-now install the google chrome sudo apt install google-chrome-stable7:- To start Chrome browser from the command line, run: google-chrome-stable







Comments