可以,CentOS 完全支持安装 Jellyfin,而且官方也提供了对应的仓库支持。下面是常见做法和注意事项(按 CentOS 版本说明)。
✅ 可以安装 Jellyfin
sudo yum install -y epel-release
sudo yum install -y ffmpeg
sudo rpm --import https://repo.jellyfin.org/jellyfin_team.gpg.key
sudo yum-config-manager --add-repo https://repo.jellyfin.org/centos/jellyfin.repo
如果提示
yum-config-manager不存在:
sudo yum install -y yum-utils
sudo yum install -y jellyfin
sudo systemctl enable --now jellyfin
浏览器打开:
http://服务器IP:8096
✅ 官方支持,安装更简单
sudo dnf install -y epel-release
sudo dnf install -y ffmpeg
sudo dnf install -y \
https://repo.jellyfin.org/centos/jellyfin-release-1.0.0-1.el$(rpm -E %rhel).noarch.rpm
sudo dnf install -y jellyfin
sudo systemctl enable --now jellyfin
sudo firewall-cmd --permanent --add-port=8096/tcp
sudo firewall-cmd --reload
video 组:sudo usermod -aG video jellyfin
❌ CentOS 8(原版)
| 系统 | 是否支持 |
|---|---|
| CentOS 7 | ✅ 支持(但已停止维护) |
| CentOS Stream 8/9 | ✅ 完全支持 |
| Rocky / AlmaLinux | ✅ 完全支持 |
如果你愿意,可以告诉我:
我可以给你一套最适合你环境的安装方案。