Want to transform your Raspberry Pi 4 into a media server powerhouse? Here’s the step-by-step instruction guide on how to install Jellyfin on Raspberry Pi 4 in 2025. Jellyfin is an open-source, free media server that allows you to stream your preferred movies, television shows, and music across various devices. Whether you’re installing your first media server or upgrading a current setup, this tutorial will guide you through getting Jellyfin up and running on your Raspberry Pi 4. Let’s get started!

Requirements:

  • Raspberry Pi (Pi 3, 4, or later recommended)
  • Raspberry Pi OS (Lite or Desktop)
  • Internet connection
  • SSH access (optional, if headless)

Installation Steps:

Step 1: Update Your System

sudo apt update && sudo apt upgrade -y

Step 2: Install HTTPS Transport & Dependencies

sudo apt install apt-transport-https curl gnupg2 -y

Step 3: Add Jellyfin Repository & GPG Key

curl -fsSL https://repo.jellyfin.org/debian/jellyfin_team.gpg.key | sudo gpg --dearmor -o /usr/share/keyrings/jellyfin-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/jellyfin-archive-keyring.gpg arch=$( dpkg --print-architecture )] https://repo.jellyfin.org/debian bookworm main" | sudo tee /etc/apt/sources.list.d/jellyfin.list

Step 4: Update & Install Jellyfin

sudo apt update
sudo apt install jellyfin -y

Step 5: Start & Enable Jellyfin Service

sudo systemctl enable jellyfin
sudo systemctl start jellyfin

Step 6: Access Jellyfin Web UI

http://YouR_IP:8096

Well done! You’ve now installed Jellyfin on your Raspberry Pi 4 and transformed it into an open-source, powerful media server. You’re now free to watch your favorite movies, TV series, and music across any device without paying for services.

To maintain your Jellyfin server in good shape, don’t forget to update your system regularly, organize your media library well, and try out plugins for added functionality. If you encounter some problems, the Jellyfin forums and community are wonderful sources to seek assistance.

Happy streaming and enjoy your own personal media server!

Leave A Reply

Please enter your comment!
Please enter your name here