Ubuntu 22.04 Tutorials

How to Install Jellyfin on Ubuntu 22.04

Discover how to install Jellyfin on Ubuntu 22.04 with this easy-to-follow guide. Stream and manage your digital media effortlessly with Jellyfin.


Introduction

Jellyfin serves as an exceptional media server solution, providing users with the ability to manage and stream their digital media collections with ease. This open-source platform ensures you have full control over your content and playback settings. In this guide, we will walk through the steps to install Jellyfin on an Ubuntu 22.04 system. Whether you are looking to set up a personal media server or a more extensive digital library, this guide will provide you with all the necessary instructions to get Jellyfin up and running smoothly.

Ubuntu 22.04

Prerequisites

  • A system running Ubuntu 22.04
  • A user account with sudo privileges
  • Internet connection to download packages

Step 1: Update the System

First, make sure your system’s package list and installed packages are up-to-date.

sudo apt update
sudo apt upgrade -y

Step 2: Install HTTPS Transport for APT

This is required to access the Jellyfin repository over HTTPS.

sudo apt install apt-transport-https -y

Step 3: Add the Jellyfin Repository

Add the Jellyfin GPG key and repository to your system.

sudo wget -O - https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | gpg --dearmor -o /usr/share/keyrings/jellyfin-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/jellyfin-archive-keyring.gpg] https://repo.jellyfin.org/ubuntu $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/jellyfin.list

Step 4: Install Jellyfin

Now you can install Jellyfin.

sudo apt update
sudo apt install jellyfin -y

Step 5: Enable and Start Jellyfin Service

After installation, enable Jellyfin to start on boot and start the service.

sudo systemctl enable jellyfin
sudo systemctl start jellyfin

Step 6: Access Jellyfin Web Interface

You can access the Jellyfin web interface by going to the following URL in your web browser.

http://<your_server_ip>:8096

Replace <your_server_ip> with the IP address of your Ubuntu server.

Step 7: Complete the Setup Wizard

Follow the on-screen instructions to complete the setup wizard. You will need to create an admin user, configure your media libraries, and set up other preferences.

Step 8: Enjoy!

Now you should have Jellyfin installed and running on your Ubuntu 22.04 server. Enjoy streaming your media!

Optional: Configure Firewall

If you have a firewall enabled, you may need to open the necessary ports.

sudo ufw allow 8096/tcp

This command allows traffic on port 8096, which is the default port for Jellyfin’s web interface.

That’s it! You have successfully installed and configured Jellyfin on Ubuntu 22.04. Enjoy your personal media server!

Conclusion

In conclusion, setting up Jellyfin on Ubuntu 22.04 is a straightforward process that opens up a world of media streaming possibilities. With your media server now ready, you can effortlessly manage, access, and stream your digital media collection from anywhere. Enjoy the convenience and control that Jellyfin offers, and transform your media consumption experience today.

I hope this article was helpful! You can find more here: Ubuntu Tutorial Articles

author avatar
Patrick Domingues

Leave a Comment

Stay Informed

Receive instant notifications when new content is released.