Google Chrome RHEL 7.6 install issue
Hi, I tried to install Google Chrome to RHEL 7.6 and got this message: "Public key for google-chrome-stable_current_x86_64.rpm is not installed" What can I do to get this installed? Thanks very much! :)
Responses
Hi GD,
The package liberation-fonts is available in the optional repository - execute these commands to install Google Chrome :
sudo subscription-manager repos --enable rhel-7-server-extras-rpms
sudo subscription-manager repos --enable rhel-7-server-optional-rpms
sudo rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
sudo vi /etc/yum.repos.d/google-chrome.repo
Add the following lines :
[google-chrome]
name=google-chrome
baseurl=https://dl.google.com/linux/chrome/rpm/stable/$basearch
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
Now update the software sources and install the application :
sudo yum updatesudo yum install google-chrome-stable
Regards,
Christian
Welcome! Check out the Getting Started with Red Hat page for quick tours and guides for common tasks.
