Linux noob still learning the basics with a simple question. Got Plex and *arr suite up and running great but Jellyfin Server refuses to install. Looks like a broken link. How do I use an alternate repo or other install source? Screenshot is the end of the output from running yay -S jellyfin-server and yes I’m on my phone because I’m too high to get up right now.

  • Victoria
    link
    English
    188 months ago

    The y is dangerous to be used without u. Do not follow the advice above unless you know what you are doing. Instead, do pacman -Syu jellyfin-server

    The y option tells pacman to update its package database. In your case, your local database got out of sync with the database from the mirrors. This normal, newer versions of software are released all the time. Pacman then tried to get the latest locally known version of jellyfin from the mirrors, but they no longer have it, as a newer one replaced it.

    By updating the database, pacman becomes aware of the newer version and can request it from the mirror. But there is now a subtle problem: the new package and some installed package could require incompatible versions of some dependency. When pacman decides to update the dependecy package, the other package is broken. This is called a “partial upgrade”, which can seriously break your system if you are not careful.

    The u option upgrades all installed packages to the latest version, so the packages and their dependencies don’t get out of sync with each other.

    See Arch Wiki, System_maintenance for more explanation.

    • Fuck spezOP
      link
      fedilink
      English
      68 months ago

      Thanks for the info… and for reminding me to run a backup.

      • @taaz@biglemmowski.win
        link
        fedilink
        English
        18 months ago

        And alternatively you can run just yay , choose the matching one and yay should do the right thing.