Installing Google Chrome on Clear Linux*

I have an alternative tutorial for this problem using dnf.

  • First install the dnf using

sudo swupd bundle-add dnf

  • After, add the Clear Linux repo using
sudo cat << EOF > /etc/yum.repos.d/clearlinux.repo
[clearlinux]
name=Clear Linux Packages
baseurl=https://download.clearlinux.org/current/x86_64/os/
gpgcheck=0
EOF
  • And add the Google Chrome repo
sudo cat << EOF > /etc/yum.repos.d/google-chrome.repo
[google-chrome]
name=google-chrome
baseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl.google.com/linux/linux_signing_key.pub
EOF
  • Use the command bellow

sudo dnf update

  • And finally install Chrome

sudo dnf install google-chrome-stable

Beta google-chrome-beta and unstable google-chrome-unstable packages.

  • To update just use

sudo dnf update

Hope this helps =)

5 Likes