I’m have some trouble on how to get Jellyfin running on Ubuntu server. I’m Very new to using Linux with the command line so please be patient with me.

i have tried to Duck(duckgo) a solution but i cant find anything that works for me.

If you need some kind of logs please tell me how to get them!

// A very lost linux noob

  • mvirts@lemmy.world
    link
    fedilink
    arrow-up
    1
    arrow-down
    1
    ·
    13 days ago

    For possibly more information on why the core is dumping (lol) try running jellyfin from the cli (probably just typing the path to the jellyfin executable and pressing enter)

    If nothing interesting is printed, try adding strace before the jellyfin executable (Google strace, it intercepts all system calls and logs them) if that doesn’t work tell strace to follow forks.

    Other than that you could start using binary debugging tools to see what shared libraries jellyfin is looking for? Maybe run it in gdb…

    • ShortN0te@lemmy.ml
      link
      fedilink
      arrow-up
      3
      ·
      12 days ago

      You want to run jellyfin with the jellyfin user. Otherwise access to all the files, configs and logs get screwed up or are not accessible

      • mvirts@lemmy.world
        link
        fedilink
        arrow-up
        2
        ·
        12 days ago

        That makes sense, I was thinking the executable is crashing without any output because something is wrong with the libraries available or executable itself. I should have made it clear that I don’t use jellyfin and the steps above are general debugging advice for applications that crash immediately.