安装Jellyfin

Jellyfin是一个多媒体管理系统。

脚本安装

curl -s https://repo.jellyfin.org/install-debuntu.sh | bash

Determining optimal repository settings.

Found the following details from '/etc/os-release':
Real OS: debian
Repository OS: debian
Repository Release: bookworm
CPU Architecture: armhf
If this looks correct, press now to continue installing Jellyfin.

Fetching repository signing key.

Installing Jellyfin repository into APT.

Types: deb
URIs: https://repo.jellyfin.org/debian
Suites: bookworm
Components: main
Architectures: armhf
Signed-By: /etc/apt/keyrings/jellyfin.gpg
.
.
.

You should see the service as 'active (running)' above. If not, use https://jellyfin.org/contact to find us for troubleshooting.

You can access your new instance now at http://192.168.0.2:8096 in your web browser to finish setting up Jellyfin.

Thank you for installing Jellyfin, and happy watching!

从http://192.168.0.2:8096访问



电视源就是之前在本地建立的。

docker安装

docker pull jellyfin/jellyfin:latest  # or docker pull ghcr.io/jellyfin/jellyfin:latest
mkdir -p /data/jellyfin/{config,cache}
mkdir /data/media
docker run -d -v /data/jellyfin/config:/config \
-v /data/jellyfin/cache:/cache -v /data/media:/media \
--net=host jellyfin/jellyfin:latest 

同样是从8096端口访问。

docker上的jellyfin占的内存太多,玩客云抗不住重启了。