Home Debian How to Install Jellyfin Media Server in Ubuntu, Debian & Mint

How to Install Jellyfin Media Server in Ubuntu, Debian & Mint

The same way a file manager organizes your files and documents is the same way a media server manages media files like music videos, TV shows, photos, and movies.

Jellyfin is a media server that goes the extra mile in managing and organizing media files. It even makes it possible to stream these files on other PCs, TVs, or phones so long as these media devices are connected to the internet or the same network.

This article seeks to walk us through the installation and usage of the Jellyfin media server in Ubuntu, Debian, and Linux Mint.

Jellyfin Media Server Features

  • Jellyfin Media Server is a free and open-source application. You do not have to worry about playback limit or ads while using it.
  • Jellyfin supports automatic recording for Live TV users. This feature ensures you do not miss your favorite TV episode just because you were away.
  • It automatically fetches TV shows or movie metadata and artwork like viewer ratings from popular platforms like Rotten Tomatoes, TheMovieDB, and TheTVDB.
  • Jellyfin is expansible. You can therefore benefit from additional features by installing its optional plugins.
  • Through FFMpeg, Jellyfin supports video encoding/encoding hardware acceleration.
  • Jellyfin also supports DLNA.

Installing Jellyfin in Ubuntu, Debian, and Mint

The first step is to include Jellyfin’s repository in your operating system so that its installation command can reference it while retrieving the needed packages.

First, make sure to update your system.

$ sudo apt update  

Next, install the Jellyfin repository with the following command:

$ echo "deb [arch=$( dpkg --print-architecture )] https://repo.jellyfin.org/$( awk -F'=' '/^ID=/{ print $NF }' /etc/os-release ) $( awk -F'=' '/^VERSION_CODENAME=/{ print $NF }' /etc/os-release ) main" | sudo tee /etc/apt/sources.list.d/jellyfin.list

Next, import the Jellyfin GPG key with the following command.

$ wget -O - https://repo.jellyfin.org/jellyfin_team.gpg.key | sudo apt-key add -

The key plays an important role when the APT package manager wants to verify the integrity of the Jellyfin Media Server installation we will be initiating soon.

As you might have noted, Jellyfin’s repository is associated with HTTPS connections. To avoid any complications while trying to install it, we should first install the ca-certificates and apt-transport-https packages.

$ sudo apt install ca-certificates apt-transport-https

Next, update your system again and install Jellyfin Media Server with the following commands.

$ sudo apt update 
$ sudo apt install jellyfin
Install Jellyfin Media Server in Ubuntu
Install Jellyfin Media Server in Ubuntu

Once installed, you can start and enable Jellyfin so that it keeps running even after your system reboots. Also, make sure to check the status of Jellyfin.

$ sudo systemctl start jellyfin
$ sudo systemctl enable jellyfin
$ sudo systemctl status jellyfin
Check Jellyfin Status in Ubuntu
Check Jellyfin Status in Ubuntu

Jellyfin Media Server Setup and Configuration

We can easily access Jellyfin from the web browser through port 8096. If you are using Jellyfin on the same machine that has it installed, its web access address is:

http://127.0.0.1:8609 
or 
http://localhost:8096

If you are trying to access Jellyfin from a remote machine that is on the internet or on the same network as the machine hosting it, you will need to specify this machine’s IP address in the following manner:

http://machine-ip-address:8096 

The localhost access will look like the following:

Jellyfin Welcome iPage
Jellyfin Welcome iPage

Click next to set up your preferred Jellyfin username and password.

Create Jellyfin User
Create Jellyfin User

Click the + sign to set up your media library.

Setup Jellyfin Media Library
Setup Jellyfin Media Library

Add a folder preference if you wish and click Ok.

Add Jellyfin Media Folder
Add Jellyfin Media Folder

Click Next to set preferred metadata language.

Set Jellyfin Metadata Language
Set Jellyfin Metadata Language

Allow remote connection to Jellyfin Media Server if you need other users to have access.

Configure Jellyfin Remote Access
Configure Jellyfin Remote Access

Finish setting up Jellyfin and sign in with your new credentials.

Jellyfin User Login
Jellyfin User Login

You should be able to access the media library you created.

Jellyfin Media Library
Jellyfin Media Library

You can even get more control from the Dashboard.

Jellyfin Dashboard
Jellyfin Dashboard

Jellyfin gives you more control when dealing with media files. It makes it easy to share and even watch TV shows, movies, or browse photos from your phone, laptop, or smart TV.

Ravi Saive
I am an Experienced GNU/Linux expert and a full-stack software developer with over a decade in the field of Linux and Open Source technologies. Founder of TecMint.com, LinuxShellTips.com, and Fossmint.com. Over 150+ million people visited my websites.

Each tutorial at UbuntuMint is created by a team of experienced writers so that it meets our high-quality standards.

Was this article helpful? Please add a comment to show your appreciation and support.

7 thoughts on “How to Install Jellyfin Media Server in Ubuntu, Debian & Mint”

  1. Can’t get past this to install Jellyfin:

    echo "deb [arch=$( dpkg --print-architecture )] https://repo.jellyfin.org/debian bullseye main" | tee /etc/apt/sources.list.d/jellyfin.list

    tee: /etc/apt/sources.list.d/jellyfin.list: Permission denied
    deb [arch=amd64] https://repo.jellyfin.org/debian bullseye main
    

    How do I gain Permission to the Jellyfin Repository, please?

    Reply
    • @Brian,

      You need to add sudo to the command to work. Try the following command:

      $ echo "deb [arch=$( dpkg --print-architecture )] https://repo.jellyfin.org/debian bullseye main" | sudo tee /etc/apt/sources.list.d/jellyfin.list

      Reply
  2. After going through all the preliminaries I get this when issuing an update:

    E: The repository ‘https://repo.jellyfin.org/linuxmint uma Release’ does not have a Release file.
    N: Updating from such a repository can’t be done securely and is therefore disabled by default.
    N: See apt-secure(8) manpage for repository creation and user configuration details.

    WTF?

    Reply
    • Jellyfin does not officially support Linux Mint, so when you follow this guides installation steps it adds the wrong thing to the apt source lists. You have to change it like this:

      $ sudo nano /etc/apt/sources.list.d/jellyfin.list
      

      In nano, delete the line that appears and paste deb [arch=amd64] https://repo.jellyfin.org/ubuntu focal main

      This reply should be included in the guide.

      Reply

Leave a Reply to Maximiliano Cancel reply

Thanks for choosing to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and your email address will NOT be published or shared. Please Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.