📌  相关文章
📜  在 fedira 上安装 google chrome - Shell-Bash (1)

📅  最后修改于: 2023-12-03 14:50:54.964000             🧑  作者: Mango

在Fedora上安装Google Chrome

Google Chrome是全球使用最广泛的浏览器之一,本文介绍如何在Fedora操作系统上安装Google Chrome浏览器。

步骤 1 - 导入Google Chrome软件包密钥

导入Google Chrome软件包密钥以确保软件包下载具有验证性。

sudo rpm --import https://dl.google.com/linux/linux_signing_key.pub

步骤 2 - 添加Google Chrome软件包仓库

将Google Chrome软件包仓库添加到您的Fedora系统中以获取最新的稳定版本。

Google Chrome稳定版

以下命令将添加Google Chrome稳定版仓库:

sudo tee /etc/yum.repos.d/google-chrome.repo << 'EOF'
[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
Google Chrome beta版

以下命令将添加Google Chrome beta版仓库:

sudo tee /etc/yum.repos.d/google-chrome.repo << 'EOF'
[google-chrome-beta]
name=google-chrome-beta
baseurl=http://dl.google.com/linux/chrome/rpm/beta/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl.google.com/linux/linux_signing_key.pub
EOF
Google Chrome开发版

以下命令将添加Google Chrome开发版仓库:

sudo tee /etc/yum.repos.d/google-chrome.repo << 'EOF'
[google-chrome-unstable]
name=google-chrome-unstable
baseurl=http://dl.google.com/linux/chrome/rpm/unstable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl.google.com/linux/linux_signing_key.pub
EOF

步骤 3 - 安装Google Chrome浏览器

使用以下命令安装Google Chrome浏览器:

sudo dnf install google-chrome-stable

步骤 4 - 启动Google Chrome浏览器

启动已安装的Google Chrome浏览器:

google-chrome

或者在菜单中搜索Google Chrome并启动它。

现在你已经成功在Fedora操作系统上安装了Google Chrome浏览器。

参考链接:Google Chrome官方站点