安装Jellyfin
Jellyfin是一个开源的媒体系统,是Emby 和 Plex的替代方案,后两者功能类似但都要收费。本文记录了deb和docker两种安装方式。
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 <Enter> 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!
从ip: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端口访问。






jellyfin在windows、linux、armbian上都可以安装。