Fedora22 无法直接安装 Chrome,需要先添加Chrome
的软件仓库
$ su - Password: # cat << EOF > /etc/yum.repos.d/google-chrome.repo [google-chrome] name=google-chrome - \$basearch 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 EOF
现在可以安装了
# dnf install -y google-chrome-stable
但是会有一个获取GPG密钥错误
的提示,加一个参数就可以了:
# dnf install -y google-chrome-stable --nogpg