No Update to 10.9 - 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: No Update to 10.9 (/t-no-update-to-10-9) Pages:
1
2
|
RE: No Update to 10.9 - bitmap - 2024-05-18 Backup your data, uninstall + reinstall server and web. Make sure your repos are pointed properly. Or...try to learn/use Docker. I'm lazy and created an alias of 'dcref' (docker compose refresh) that updates all my containers or 'dcrefs' for a single container. It essentially runs: Code: docker compose pull && docker compose down && docker compose rm [all] && docker compose up -d pihole && docker compose up -d --remove-orphans This pulls the new image, stops all containers, removes them, brings up my Pihole (required for connectivity), then brings up the rest of the project and removes any orphan containers. Standard practice for me when upgrading is: Code: dc pull [container] && dc stop [container] | dc down && dc rm -f [container] && dc up -d [container] && dc logs -tf [container] Pulls new update, stops and removes the old container, brings it back up, and runs a tail on the container logs so I can watch for any errors or issues I need to fix. No futzing with dependencies, no lost data, easy access to logs, persistent data, way easy to update or revert (as long as you don't engage in breaking changes like 10.8.13 --> 10.9 which are irreversible), easy to monitor, and easy to segment or swarm if you have some weird need for orchestration on your home server. Running any software like Jellyfin requires *some* amount of research and troubleshooting, but Linux presents its own issues...frequently. RE: No Update to 10.9 - TheDreadPirate - 2024-05-18 (2024-05-18, 07:48 PM)HikariNoKitsune Wrote: Yea... IDK about anyone else, but nothing works for me. Good to know that the server itself won't just, tell you when there's an update... and when doing normal practices for 'updating/upgrading', nothing is actually upgraded or updated lol... @HikariNoKitsune - Ubuntu does LTS releases every 2 years, so 23.04 is not an LTS release. 22.04 is still supported as is 20.04 for that matter. Also, Ubuntu won't update any 3rd party repos to change what version of Ubuntu your are running. In /etc/apt/sources.list.d/jellyfin.sources, there is a "suites" field where you state which debian/ubuntu version you are on. Code: Types: deb As long as apt is actually updating, it should pull down the new jellyfin manifest and update jellyfin. If one of the apt repos is misconfigured it can prevent ANY apt manifest updates. UNLESS you, at some point, told apt to never update jellyfin. You can lock versions for specific packages. |