Installing Google Chrome in Ubuntu 20.04
The following guide describes how to install Google Chrome on Ubuntu with a few commands 20.04
At the beginning we start our terminal and issue a command in the console to download the repository :
1 | wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add - |
The next step is to get the key:
1 | sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' |
We are updating our repositories database:
1 | sudo apt update |
We install the browser using the command:
1 | sudo apt install google-chrome-stable |
what really differs google chrome from the chromium version we have in the ubuntu store ?
Hello,
Chrome is a google product as branded as possible 😉
Chromium is a clean version of the chrome browser based on chromium.
Here you have it more written: https://www.benchmark.pl/aktualnosci/chrome-vs-chromium-czym-sie-roznia-i-ktora-lepsza.html
thanks great answer 😀
Works very well , thank you
Reading package lists… Ready
Building a dependency tree
Read status information… Ready
E: Could not find google-chrome-stable package
after entering the command sudo apt install google-chrome-stable pops up what I gave above what to do in such a situation
And you definitely added and downloaded the key and repo at the beginning?
wget -q -O – https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add –
sudo sh -c ‘echo “deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable hand” >> /etc/apt/sources.list.d/google-chrome.list’
After these operations, you also need to update sudo apt update repositories
Here is a slightly different procedure described:
https://support.google.com/chrome/answer/95346?co=GENIE.Platform%3DDesktop&hl=pl&oco=0
Installing Chrome on Linux
Great, it works! Because the installer on ubuntu from the official Chrome website does not work…