From e551fc0c9f011f29a1f5379b5cb6501d907c5217 Mon Sep 17 00:00:00 2001 From: RomanNum3ral Date: Sun, 20 Jul 2025 15:08:09 +0000 Subject: [PATCH] Add jellyfin_install.sh --- jellyfin_install.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 jellyfin_install.sh diff --git a/jellyfin_install.sh b/jellyfin_install.sh new file mode 100644 index 0000000..9b6c6c2 --- /dev/null +++ b/jellyfin_install.sh @@ -0,0 +1,9 @@ +#!/bin/bash +# Install Jellyfin (for Raspberry Pi OS / Debian-based distros) + +# Add Jellyfin's official repository +curl https://repo.jellyfin.org/install-debuntu.sh | sudo bash + +# Install Jellyfin +sudo apt update +sudo apt install -y jellyfin \ No newline at end of file