Witzker's picture

I tried your Media Server.OVA and noticed that there is the version:

Server: mediaserver

Version: 10.7.2

as I am new with all this server stuff, I don't know if this is a docker or other installation ad there are surely different ways to get the latest version

Jellyfin 10.8.1

https://github.com/jellyfin/jellyfin/releases

Pls. Tell me an easy way to update

THX

Forum: 
Jeremy Davis's picture

We install Jellyfin from the official upstream Jellyfin apt repo. So you should be able to upgrade like this:

apt update && apt install jellyfin -y

If you have any troubles, please post back with the output of the above.

Witzker's picture

THX I got the following:

> apt update && apt install jellyfin -y

WARNING: apt does not have a stable CLI interface. Use with caution in scripts.

Hit:1 http://security.debian.org buster/updates InRelease
Hit:2 http://deb.debian.org/debian buster InRelease
Ign:3 http://archive.turnkeylinux.org/debian buster-security InRelease
Ign:4 http://archive.turnkeylinux.org/debian buster InRelease
Hit:5 http://archive.turnkeylinux.org/debian buster-security Release
Hit:7 https://repo.jellyfin.org/debian buster InRelease
Hit:8 http://archive.turnkeylinux.org/debian buster Release
Reading package lists...
Building dependency tree...
Reading state information...
1 package can be upgraded. Run 'apt list --upgradable' to see it.

WARNING: apt does not have a stable CLI interface. Use with caution in scripts.

Reading package lists...
Building dependency tree...
Reading state information...
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 jellyfin : Depends: jellyfin-server (>= 10.8.3-1) but 10.7.2-1 is to be installed
            Depends: jellyfin-web (>= 10.8.3-1) but 10.7.2-1 is to be installed
E: Unable to correct problems, you have held broken packages.

Does it mean I already have the latest version?

I did an update with webmin before this command.

But I have Version: 10.7.2 now

Pls. Help

Paul-1984's picture

I've run into this same issue. What I have been able to research turns up a couple different possible issues.<br/>
  • According to this article (from last month), the current stable version of Jellyfin is 10.7.
    • https://www.linuxcapable.com/how-to-install-jellyfin-media-server-on-ubuntu-22-04-lts/
 
  • My Android TV app won't connect because it is looking for 10.8 and no longer supports 10.7.
    • The Jellyfin GitHub repo shows an update as recent as 3 days ago, but those changes need to be trickled down here or for a manual process to work otherwise.
    • https://github.com/jellyfin/jellyfin/releases
 
  • I'm guessing Turnkeylinux has to tweak their container to accommodate the new updates. Their most recent pull on GitHub for this container is 26 days ago. Hopefully that means a fix is close.
    • https://github.com/turnkeylinux-apps/mediaserver
Karel's picture

same here :(  but i'm guessing it might be because the container is based on buster
The following packages have unmet dependencies:
 jellyfin : Depends: jellyfin-server (>= 10.8.4-1) but 10.7.2-1 is to be installed
            Depends: jellyfin-web (>= 10.8.4-1) but 10.7.2-1 is to be installed
Indiana Paul's picture

I was able to reproduce this issue. I also tried a fresh spin of the template and ran into the same thing.

Nacho's picture

What to do?
Jeremy Davis's picture

Hi all, apologies on such a slow response.

FWIW it appears that this is a variation of an open Jellyfin issue. I've posted my workaround there, but to save you a click, here it is:

apt update
apt install -y jellyfin-ffmpeg5
apt install -y jellyfin-server=10.8.4-1 jellyfin-web=10.8.4-1
apt install -y jellyfin
apt-mark auto jellyfin-web jellyfin-server jellyfin-ffmpeg5
apt autoremove

Note: the 'apt update', the apt-mark command and the final 'apt autoremove' are not required strictly speaking. Obviously if you've recently run apt update, you don't need to rerun it. The apt-mark command just ensures that the Jellyfin dependencies are marked as "automatically installed" (because we actually manually install them; changing them to auto will mean that they will appear available to "autoremove" if/when the jellyfin package is removed). The final 'apt autoremove' will remove any "automatically installed" packages (by default should only be 'libdrm-intel1' & 'libvdpau1').

After you've done that, double check 'apt policy jellyfin*', the output should look like this:

jellyfin-web:
  Installed: 10.8.4-1
  Candidate: 10.8.4-1
  Version table:
 *** 10.8.4-1 100
         10 https://repo.jellyfin.org/debian buster/main amd64 Packages
        100 /var/lib/dpkg/status
jellyfin-ffmpeg:
  Installed: (none)
  Candidate: 4.4.1-4-buster
  Version table:
     4.4.1-4-buster 10
         10 https://repo.jellyfin.org/debian buster/main amd64 Packages
     4.3.2-1-buster -1
        100 /var/lib/dpkg/status
jellyfin-server:
  Installed: 10.8.4-1
  Candidate: 10.8.4-1
  Version table:
 *** 10.8.4-1 100
         10 https://repo.jellyfin.org/debian buster/main amd64 Packages
        100 /var/lib/dpkg/status
jellyfin-ffmpeg5:
  Installed: 5.1-2-buster
  Candidate: 5.1-2-buster
  Version table:
 *** 5.1-2-buster 100
         10 https://repo.jellyfin.org/debian buster/main amd64 Packages
        100 /var/lib/dpkg/status
jellyfin:
  Installed: 10.8.4-1
  Candidate: 10.8.4-1
  Version table:
 *** 10.8.4-1 500
         10 https://repo.jellyfin.org/debian buster/main amd64 Packages
        100 /var/lib/dpkg/status
Nacho's picture

Many thanks for the response!!
Witzker's picture

Many THX WORX!

Now on Version: 10.8.4

But The update does not solve my problem described here:

Connect Jellyfin library to a MP3 folder on Synology (Your Media Server OVA) | TurnKey GNU/Linux (turnkeylinux.org)

Hope for help to also solve this.

THX

 

 

ngin's picture

Thank you, JD! The solution works like a charm

Add new comment