Installing Chrome and Firefox Browsers on Linux — Here’s an example using CentOS 7:
Chrome Installation:
vi /etc/yum.repos.d/google-chrome.repo
[google-chrome]
name=google-chrome
baseurl=http://dl.google.com/linux/chrome/rpm/stable/$basearch
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
Installation:
yum -y install google-chrome-stable
If the installation fails on a domestic server, you can use:
yum -y install google-chrome-stable –nogpgcheck
Firefox Installation:
yum -y install firefox
