Hello, I yet again come, hat in hand, for assistance from those wiser in the ways of the Linux. I’m having a bit of an issue downloading Jellyfin on my ElementaryOS laptop. I’ve tried all the guide on the first few pages of ddg only to receive errors after entering the comman “ sudo apt-get update “. I get ERR:3 https//repo.jellyfin.org/debian circle Release 404 Not found.

If someone can point me the way I’d be most appreciative

    • monovergent 🛠️
      link
      fedilink
      1017 hours ago

      To be completely honest, I installed Jellyfin “bare-metal” and have been using it that way since after attempting to skim the Docker documentation and failing to understand how Docker works.

      • @Nibodhika@lemmy.world
        link
        fedilink
        412 hours ago

        Docker is a virtualization platform, similar to setting out a Virtual Machine but a lot less resource intense. You need to:

        • install docker on your machine
        • Start/enable the service (this is usually done automatically on most user friendly distros, and if you’re using one that doesn’t I expect you to know how to do it)
        • Add your user to the docker group

        That’s it, docker setup done, now you need to write a compose file, i.e. something that tells docker what do you want to run, usually you get a working example on any project website, and linuxserver.io is a great site for them too, for example for Jellyfin can be found here: https://docs.linuxserver.io/images/docker-jellyfin/

        Just create a folder, create a file called compose.yaml there and put that content in it, now run docker compose up -d and congratulations you have a working Jellyfin server.

        With time you’ll learn what the compose file is doing, for example the ports map ports from the docker to your machine, volumes does the same, so for example the example has /path/to/jellyfin/library:/config if instead you write ./config:/config a folder called config will be created on the same folder the compose.yaml file is and inside the docker it will be mounted as /config which is where Jellyfin will look for configurations. In the same manner you can add /home/myuser/Movies:/Movies and inside docker you will be able to see the contents of /home/myuser/Movies when scanning the /Movies folder.

      • GoldenQuetzal
        link
        fedilink
        316 hours ago

        My friend, i would like to introduce you to the wonders of Portainer. Go forth and watch a video on youtube and you’ll get it.

        • @hperrin@lemmy.ca
          link
          fedilink
          English
          415 hours ago

          Use Portainer if you don’t want anything to be portable. There are other issues too. Just use Docker Compose.