October 05, 2024

Jellyfin - Install open source media server on Ubuntu Server 22.04.

1. Update the system.

sudo apt update | sudo apt upgrade -y

2. Install the next packages.

sudo apt install apt-transport-https wget software-properties-common -y

3. Add the Jellyfin key.

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

4. Add the Jellyfin repository.

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

5. Updates Repositories.

sudo apt update

6. Install Jellyfin.

sudo apt install jellyfin -y

7. Enable Jellyfin service.

sudo systemctl enable jellyfin

8. Start Jellyfin service.

sudo systemctl start jellyfin

9. Access your server.

http://your_server_ip:8096

10. Set the content media directory permissions.

sudo chown 755 /directory/media-content


No comments

Post a Comment

Code Copied!

© 2025 Jadslog. All Rights Reserved.