温馨提示×

Jellyfin需要哪些Linux依赖

小樊
91
2025-02-17 23:14:27
栏目: 智能运维
Linux服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

Jellyfin是一个开源的媒体系统,可以在多种Linux发行版上运行。具体的依赖项可能会根据你使用的Linux发行版和Jellyfin的版本有所不同。以下是一些常见的依赖项和安装步骤:

一般依赖项

  • libicu:提供Unicode和全球化支持。
  • fontconfig:管理字体配置。

在CentOS上的安装步骤

  1. 安装依赖
yum install libicu fontconfig -y
  1. 下载并安装Jellyfin RPM包
wget -c https://repo.jellyfin.org/releases/server/centos/stable/web/jellyfin-web-10.8.9-1.el7.noarch.rpm
wget -c https://repo.jellyfin.org/releases/server/centos/stable/server/jellyfin-server-10.8.9-1.el7.x86_64.rpm
wget -c https://repo.jellyfin.org/releases/server/centos/stable/server/jellyfin-10.8.9-1.el7.x86_64.rpm
  1. 安装Jellyfin
rpm -Uvh --nodeps jellyfin-web-10.8.9-1.el7.noarch.rpm
rpm -Uvh --nodeps jellyfin-server-10.8.9-1.el7.x86_64.rpm
rpm -Uvh --nodeps jellyfin-10.8.9-1.el7.x86_64.rpm
  1. 启动和设置Jellyfin
systemctl start jellyfin
systemctl enable jellyfin
systemctl stop jellyfin
systemctl status jellyfin
systemctl restart jellyfin

在Docker上的安装步骤

如果你使用的是Docker,可以拉取官方的Jellyfin镜像:

docker pull jellyfin/jellyfin:latest

然后按照Docker的文档进行配置和启动。

请注意,具体的依赖项和安装步骤可能会根据Jellyfin版本和Linux发行版的不同而有所变化。建议参考Jellyfin的官方文档或GitHub页面获取最新的安装指南。

亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读:linux php安装需要哪些依赖

0