![]() |
SOLVED: Active: inactive (dead) - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +--- Thread: SOLVED: Active: inactive (dead) (/t-solved-active-inactive-dead--7365) |
Active: inactive (dead) - camiloVerger - 2024-08-09 No puedo activar Jellyfin, pero tuve problemas desde su instalación. Les cuento que lo quiero usar en un servidor casero con Debian 12 recién instalado. Y les muestro mi problema en la instalación para que hayan más detalles de mi problema: Primero intenté instalar Jellyfin con el comando normal: Code: sudo apt install jellyfin Code: Los siguientes paquetes tienen dependencias incumplidas: Code: sudo apt install jellyfin-server jellyfin-web Code: sudo systemctl start jellyfin Code: ○ jellyfin.service - Jellyfin Media Server Agradezco mucho cualquier ayuda ya que no soy experto, soy un simple aficionado. Saludos! RE: Active: inactive (dead) - tepsys - 2024-08-09 How did you go about adding a repo for Jellyfin to Debian? Hopefully you used one of the options here: https://jellyfin.org/docs/general/installation/linux/#debuntu-debian-ubuntu-and-derivatives-using-apt Code: sudo apt install jellyfin What does your /etc/apt/sources.list look like? Normally if something were misconfigured, systemctl status jellyfin would exit with something other than "SUCCESS" Code: Main PID: 1476 (code=exited, status=0/SUCCESS) I would try starting the service one more time, or even reboot the system if you haven't already Code: sudo systemctl start jellyfin RE: Active: inactive (dead) - TheDreadPirate - 2024-08-09 What repos do you have in Debian? Do you only have main and updates? You should add universe and multiverse to ensure that you are able to install all the dependencies for jellyfin-ffmpeg. The fact that jellyfin-ffmpeg wasn't installed is probably the reason that Jellyfin is failing to start. RE: Active: inactive (dead) - Efficient_Good_5784 - 2024-08-09 Hablé con uno del equipo de Jellyfin. Me ha dicho que la razón es que estás usando un método obsoleto. Tienes que borrar el paquete de Jellyfin y también después tienes que borrar lo siguiente: "/etc/apt/sources.list.d/jellyfin.list" Ya después, tienes que usar el método de instalar como está escrito en el manual: https://jellyfin.org/docs/general/installation/linux#debuntu-debian-ubuntu-and-derivatives-using-apt RE: Active: inactive (dead) - tepsys - 2024-08-09 (2024-08-09, 02:43 PM)TheDreadPirate Wrote: What repos do you have in Debian? Do you only have main and updates? You should add universe and multiverse to ensure that you are able to install all the dependencies for jellyfin-ffmpeg. The fact that jellyfin-ffmpeg wasn't installed is probably the reason that Jellyfin is failing to start. Just an fyi, multiverse and universe are Ubuntu things, not Debian. The only repos he should need enabled for a Debian Jellyfin server are main and maybe non-free-firmware ![]() A basic working sources.list for Debian with Jellyfin: Code: deb http://deb.debian.org/debian bookworm main non-free-firmware RE: Active: inactive (dead) - camiloVerger - 2024-08-10 (2024-08-09, 03:16 PM)Efficient_Good_5784 Wrote: Hablé con uno del equipo de Jellyfin. Muchas gracias, hice exactamente eso y Jellyfin ya esta activo. |