Come hang with us on Discord and chat directly with the team!Discordtop-bar-close-icon

2024-09-22

How to Install Jellyfin on Arch Linux

tutorials
img

Jellyfin is a free and open-source media server that allows you to manage and stream multimedia content such as videos and music across various devices. It serves as an excellent alternative to popular media servers like Plex and Emby. This guide will walk you through the steps to install Jellyfin on Arch Linux.

Prerequisites

Before proceeding with the installation, ensure you have:

  • Arch Linux installed and up-to-date. If not, download and install it from the official Arch Linux website.
  • Root access or sudo user access to your system.

Step 1: Update Pacman Database

The first step is to update the pacman database:

sudo pacman -Sy

Step 2: Install Jellyfin

Next, install the Jellyfin package using pacman:

sudo pacman -S jellyfin

This will install the Jellyfin package along with all its dependencies.

Step 3: Enable and Start Jellyfin

Once installed, enable and start the Jellyfin service:

sudo systemctl enable jellyfin.service
sudo systemctl start jellyfin.service

The Jellyfin service is now active and running.

Step 4: Configure Jellyfin

Configure Jellyfin via the web interface. Open your browser and navigate to http://localhost:8096.

The Jellyfin welcome page should appear. Follow the on-screen instructions to complete the setup.

Step 5: Access Jellyfin

With Jellyfin installed on your Arch Linux machine, you can access it from any device on the same network by entering the IP address of the Jellyfin server followed by port 8096 in a web browser.

Conclusion

This guide has shown you how to install Jellyfin on Arch Linux, enable and start the Jellyfin service, and complete the configuration through the web interface. Enjoy streaming multimedia content on Jellyfin from any device within your network.