惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
WordPress大学
WordPress大学
T
Tailwind CSS Blog
V
Visual Studio Blog
月光博客
月光博客
Hugging Face - Blog
Hugging Face - Blog
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Last Week in AI
Last Week in AI
阮一峰的网络日志
阮一峰的网络日志
量子位
有赞技术团队
有赞技术团队
酷 壳 – CoolShell
酷 壳 – CoolShell
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
Jina AI
Jina AI
雷峰网
雷峰网
博客园 - 【当耐特】
博客园 - 叶小钗
美团技术团队
宝玉的分享
宝玉的分享
IT之家
IT之家

博客园 - 哈喽哈喽111111

Rocky 9.6安装配置Google Authenticator AI 不仅没有减少工作,反而增加了工作 你需要知道的 AI 内存知识 firewall-cmd使用教程 minio从旧集群导出桶再上传到新集群导入桶 RockyLinux SSH 跳板转发 3389(Windows 远程桌面)完整方案 MySQL使用自带的logrotate配置日志轮转 yum方式安装redis7 nacos新加用户操作 网络运营商禁止端口信息 Linux开机启动rc.local不生效的一般解决方案 Nginx流量拷贝ngx_http_mirror_module模块使用方法详解 Adobe 修改 hosts 文件 axios 投毒与好莱坞式骗术 Linux系统在使用systemctl启动服务的失败,报错如下:Error No space left on device git submodule 的增、查、改、删 “头号玩家”—— 美国技术霸权下的全球虚拟货币资产收割行动深层解析 你是第几级 AI 编程 MySQL中通过关联update将一张表的一个字段更新到另外一张表中 Linux 的 Port Knocking 端口碰撞(端口敲门) MySQL解除死锁 jar文件解压缩操作 设置Windows服务器远程桌面能使用多个桌面 20251024- 使用shell脚本分库定时备份MySQL数据 禁用sentinel 在 Linux 中安装和配置 NTP 服务器和 NTP 客户端 springboot配置文件关系及加载顺序 用自带的Nginx为gitlab做白名单 Rocky9和Ubuntu使用pip安装python的库mysqlclient失败解决方式 在Spring Boot Admin中根据Nacos的命名空间来区分和管理不同的环境
Rocky Linux 安装 Google Chrome 浏览器
哈喽哈喽111111 · 2026-03-03 · via 博客园 - 哈喽哈喽111111

方法 1:手动下载安装(推荐)

# 下载 Chrome 的 RPM 包
sudo wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm

# 安装依赖,Rocky Linux 需要一些额外的依赖包:
sudo dnf install -y libXScrnSaver

# 安装 Chrome
sudo dnf install -y ./google-chrome-stable_current_x86_64.rpm

# 启动 Chrome
google-chrome-stable

方法 2:通过 Google Chrome 官方仓库安装

# 添加 Google Chrome 仓库
# sudo tee /etc/yum.repos.d/google-chrome.repo <<EOF
[google-chrome]
name=google-chrome
baseurl=https://dl.google.com/linux/chrome/rpm/stable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl.google.com/linux/linux_signing_key.pub
EOF

# 安装 Chrome
sudo dnf install -y google-chrome-stable

# 启动 Chrome
google-chrome-stable

注意事项

  • Rocky Linux 8/9 基于 RHEL,因此 Chrome 的依赖项(如 libXScrnSaver)可能需要手动安装。
  • 如果遇到依赖问题,可以尝试:sudo dnf install -y alsa-lib atk gtk3 libXScrnSaver libdrm mesa-libgbm nss
  • 如果喜欢开源版本,可以安装 Chromium:sudo dnf install -y chromium
  • 默认root用户不允许启动,因此root用户启动需要在后面加上 --no-sandbox,google-chrome-stable --no-sandbox