• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Support Troubleshooting Install Jellyfin 10.9 unstable on debian 12.5

     
    • 0 Vote(s) - 0 Average

    Install Jellyfin 10.9 unstable on debian 12.5

    I need help creating the source.list.
    pixel24
    Offline

    Member

    Posts: 196
    Threads: 56
    Joined: 2023 Aug
    Reputation: 1
    Country:Germany
    #1
    2024-03-14, 06:41 PM (This post was last modified: 2024-03-14, 06:45 PM by pixel24. Edited 1 time in total.)
    Hi@all,

    I've set up a test system with Debian 12.5 and want to test the current Unstable version (10.9) on it. I've included the main repository like this:

    Code:
    deb [arch=amd64] https://repo.jellyfin.org/debian]https://repo.jellyfin.org/debian bookworm unstable

    What I still need are the appropriate entries for FFMpeg 6.x and the plugin repository.
    Could someone tell me how to include that in the:

    /etc/apt/sources.list.d/jellyfin.list

    all the best
    pixel24
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #2
    2024-03-14, 06:48 PM (This post was last modified: 2024-03-14, 06:49 PM by TheDreadPirate. Edited 1 time in total.)
    jellyfin-ffmpeg is in the same repo as the rest of jellyfin.

    https://repo.jellyfin.org/?path=/ffmpeg/...-6.x/amd64

    Should install with "sudo apt install jellyfin-ffmpeg6". It is available in the stable repo. Not sure about the unstable repo.

    The plugin repo should be part of the unstable install, though a lot of plugins still haven't been migrated, AFAIK.
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    pixel24
    Offline

    Member

    Posts: 196
    Threads: 56
    Joined: 2023 Aug
    Reputation: 1
    Country:Germany
    #3
    2024-03-14, 07:09 PM (This post was last modified: 2024-03-14, 07:09 PM by pixel24. Edited 1 time in total.)
    No, as far as I can see, it's not included in unstable. With the above-mentioned repository:

    Code:
    root@media02:~# apt search jellyfin
    Sortierung… Fertig
    Volltextsuche… Fertig
    jellyfin/unbekannt 2024031105+deb12 all
      Jellyfin is the Free Software Media System.
    jellyfin-server/unbekannt 2024031105+deb12 amd64
      Jellyfin is the Free Software Media System.
    jellyfin-web/unbekannt 2024031105+deb12 all
      Jellyfin is the Free Software Media System.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #4
    2024-03-14, 07:10 PM
    Figured. You will need to include a stable config to get jellyfin-ffmpeg6.
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    pixel24
    Offline

    Member

    Posts: 196
    Threads: 56
    Joined: 2023 Aug
    Reputation: 1
    Country:Germany
    #5
    2024-03-14, 07:14 PM
    So I need to create the source.list like this:

    Code:
    deb [arch=amd64] https://repo.jellyfin.org/debian bookworm unstable
    deb [arch=amd64] https://repo.jellyfin.org/debian bookworm main

    ?
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #6
    2024-03-14, 07:21 PM
    I don't have access to my server at the moment to verify, but this is what the debuntu install script adds.

    Code:
    cat <<EOF | tee /etc/apt/sources.list.d/jellyfin.sources
    Types: deb
    URIs: https://repo.jellyfin.org/${REPO_OS}
    Suites: ${VERSION}
    Components: main
    Architectures: ${ARCHITECTURE}
    Signed-By: /etc/apt/keyrings/jellyfin.gpg
    EOF
    echo

    So I think "deb [arch=amd64] https://repo.jellyfin.org/debian bookworm main" is correct.
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    pixel24
    Offline

    Member

    Posts: 196
    Threads: 56
    Joined: 2023 Aug
    Reputation: 1
    Country:Germany
    #7
    2024-03-14, 07:27 PM
    If I create the file /etc/apt/sources.list.d/jellyfin.list like this and then run:

    Code:
    apt update
    apt install jellyfin


    the installation completes without any errors. However, when I subsequently visit the URL:
    http://media02.lan.example.de:8096/

    Instead of the setup assistant as in 10.8.13, only the following appears: a symbol representing the server "media02", but attempting to connect does not work.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #8
    2024-03-14, 07:32 PM
    That sounds like browser caching. Also, keep in mind that the ${REPO_OS}, ${VERSION}, and ${ARCHITECTURE} are variables in the script and needs to be replaced with debian, bookworm, and amd64 respectively.

    Have you consider using docker for jellyfin unstable? I run unstable in docker alongside my direct install of 10.8.13.
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    pixel24
    Offline

    Member

    Posts: 196
    Threads: 56
    Joined: 2023 Aug
    Reputation: 1
    Country:Germany
    #9
    2024-03-14, 07:48 PM
    Strangely, it works under the IP but not under the FQHN. I've checked DNS resolution from both the client and the Jellyfin host using dig.

    The resolution works.
    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode