Note: This is an updated installation method for Google Chrome, as the previous
apt-get
approach has been deprecated. Note: sh file is attached.
Add Google’s public signing key and set up the APT repository for Google Chrome:
curl -fsSL https://dl.google.com/linux/linux_signing_key.pub | sudo gpg --dearmor -o /usr/share/keyrings/google-chrome.gpg
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/google-chrome.gpg] http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-chrome.list
sudo apt update
sudo apt install google-chrome-stable
Credit: This updated guide is based on an original gist by @twistedpair.