AlmaLinux
社区驱动,CloudLinux 赞助。通用首选。EL 9 / 10。
选择发行版、版本(EL 9 / EL 10)、地区和镜像类型,自动获取下载地址。
AlmaLinux
社区驱动,CloudLinux 赞助。通用首选。EL 9 / 10。
Rocky Linux
CentOS 创始人发起,强调社区独立性。EL 9 / 10。
CentOS Stream
RHEL 上游开发分支,适合开发测试。9 / 10。
Oracle Linux
Oracle 发布,含 UEK 内核,免费使用。EL 9 / 10。
Anolis OS (龙蜥)
阿里巴巴发起,国产化生态。23.5 / 8.10。
OpenCloudOS
腾讯发起,面向云场景。9.6 / 8.8。
| 类型 | 大小 | 说明 | 推荐场景 |
|---|---|---|---|
| Minimal | ~1.5 GB | 仅包含核心组件 | 服务器部署(推荐) |
| DVD | ~8 GB | 包含大量软件包,可离线安装 | 无网络环境 |
| Boot | ~800 MB | 网络安装,按需下载 | 网络良好的环境 |
| Cloud / GenericCloud | ~500 MB | 预构建云镜像(qcow2) | 云平台 / KVM |
| Container | ~50 MB | 容器基础镜像 | Docker / Podman |
| 镜像站 | 地址 |
|---|---|
| 阿里云 | mirrors.aliyun.com/almalinux/ |
| 清华 TUNA | mirrors.tuna.tsinghua.edu.cn/almalinux/ |
| 中科大 USTC | mirrors.ustc.edu.cn/almalinux/ |
| 华为云 | repo.huaweicloud.com/almalinux/ |
| 镜像站 | 地址 |
|---|---|
| 阿里云 | mirrors.aliyun.com/rockylinux/ |
| 清华 TUNA | mirrors.tuna.tsinghua.edu.cn/rocky/ |
| 中科大 USTC | mirrors.ustc.edu.cn/rocky/ |
| 镜像站 | 地址 |
|---|---|
| 阿里云 | mirrors.aliyun.com/centos-stream/ |
| 清华 TUNA | mirrors.tuna.tsinghua.edu.cn/centos-stream/ |
| 镜像站 | 地址 |
|---|---|
| Oracle 官方 | yum.oracle.com/ |
| 清华 TUNA | mirrors.tuna.tsinghua.edu.cn/oracle-linux/ |
| 镜像站 | 地址 |
|---|---|
| 阿里云 | mirrors.aliyun.com/anolis/ |
| OpenAnolis 官方 | mirrors.openanolis.cn/ |
| 镜像站 | 地址 |
|---|---|
| 腾讯云 | mirrors.tencent.com/opencloudos/ |
| OpenCloudOS 官方 | mirrors.opencloudos.org/ |
上面的镜像下载器会针对 AlmaLinux / Rocky 自动生成 curl 命令(含版本、地区、架构)。下面是把版本号换成 10 或 9 的通用示例(latest 软链始终指向该大版本的最新小版本):
# EL 10$ curl -LO https://mirrors.aliyun.com/almalinux/10/isos/x86_64/AlmaLinux-10-latest-x86_64-minimal.iso# EL 9$ curl -LO https://mirrors.aliyun.com/almalinux/9/isos/x86_64/AlmaLinux-9-latest-x86_64-minimal.iso# EL 10$ curl -LO https://mirrors.aliyun.com/rockylinux/10/isos/x86_64/Rocky-10-latest-x86_64-minimal.iso# EL 9$ curl -LO https://mirrors.aliyun.com/rockylinux/9/isos/x86_64/Rocky-9-latest-x86_64-minimal.iso# CentOS Stream 不提供 -latest- 软链,进目录看当前文件名(无 minimal,只有 boot/dvd1)$ curl -s https://mirrors.aliyun.com/centos-stream/10-stream/BaseOS/x86_64/iso/ | grep -o 'CentOS-Stream-10-[0-9.]*-x86_64-dvd1.iso' | head -1# https://yum.oracle.com/ISOS/OracleLinux/OL10/ 里选择最新 uN 子目录$ curl -LO https://yum.oracle.com/ISOS/OracleLinux/OL9/u7/x86_64/OracleLinux-R9-U7-x86_64-dvd.iso$ sha256sum *.iso将输出的哈希值与官方发布的 CHECKSUM 文件对比。
| 方式 | 难度 | 时间 | 数据风险 | 适合人群 |
|---|---|---|---|---|
| 云服务器 (阿里云/腾讯云) | 简单 | 5 分钟 | 无 | 想直接实践服务器管理 |
| 虚拟机 (VirtualBox/VMware) | 简单 | 15 分钟 | 无 | 完全新手,先体验 |
| KVM/libvirt | 中等 | 20 分钟 | 无 | 已有 Linux 系统 |
| 物理机安装 | 中等 | 30 分钟 | 会格式化磁盘 | 专用服务器 |
| 双系统 | 较难 | 45 分钟 | 需谨慎分区 | 想保留原系统 |