PantherX2 debain/armbian 命令无法安装Jellyfin10.11的解决办法
直接用官方安装命令:
bash
curl -s https://repo.jellyfin.org/install-debuntu.sh | sudo bash
> Determining optimal repository settings.
> Checking for free space and known-problematic filesystem targets.
>> OK: Data directory has 23561MB of available space.
>> OK: Data directory on ext4, this is supported.
Insufficient free space for /tmp: 2005536KB found, 2097152KB required
Please increase tmpfs size or free up space and try again.
报/tmp空间不足,原因是PantherX2固件把/tmp挂载到了/tmpfs下,只有2G的空间。
最快的办法是,tmp目录直接用主盘"/"
新建挂载目录
bash
mkdir /tmpfs
修改/etc//fstab
修改前
bash
tmpfs /tmpfs tmp defaults,nosuid 0 0
修改后
bash
tmpfs /tmpfs tmpfs defaults,nosuid,nofail 0 0
保存后测试能挂载成功能才行
bash
mount -a
再次运行安装命令
bash
curl -s https://repo.jellyfin.org/install-debuntu.sh | sudo bash
...
> Waiting 15 seconds for Jellyfin to fully start up.
-------------------------------------------------------------------------------
● jellyfin.service - Jellyfin Media Server
Loaded: loaded (/lib/systemd/system/jellyfin.service; enabled; vendor preset: enabled)
Drop-In: /etc/systemd/system/jellyfin.service.d
└─jellyfin.service.conf
Active: active (running) since Sun 2025-10-26 15:07:00 CST; 2s ago
Main PID: 4488 (jellyfin)
Tasks: 10 (limit: 4659)
Memory: 18.1M
CPU: 2.079s
CGroup: /system.slice/jellyfin.service
└─4488 /usr/bin/jellyfin --webdir=/usr/share/jellyfin/web --ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg
Oct 26 15:07:00 armbian systemd[1]: Started Jellyfin Media Server.
-------------------------------------------------------------------------------
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.1.12:8096 in your web browser to finish setting up Jellyfin.
Thank you for installing Jellyfin, and happy watching!