Jellyfin: Installation als LXC Container in Proxmox

Jellyfin: Installation als LXC Container in Proxmox

letzte Aktualisierung: 4. Februar 2026
#
Ungefähre Lesezeit: 1 min

Mounten des Medienverzeichnisses

nano /etc/fstab
//192.168.100.10/00-public /jellyfin cifs credentials=/home/.smbcredentials,rw,uid=1000,gid=1000,file_mode=0660,dir_mode=0770 0 0

Strg+o / Strg+X

nano /home/.smbcredentials
username=media
password=Password

Strg+o / Strg+X

systemctl daemon-reload
mount -a

cd /jellyfin (testen ob NAS erreichbar und Verbindung steht)

Installation

apt install sudo curl

curl -s https://repo.jellyfin.org/install-debuntu.sh | sudo bash


You should see the service as ‚active (running)‘ above. If not, use https://jellyfin.org/contact to find us for troubleshooting.

You can access your new instance now at http://192.168.100.23:8096 in your web browser to finish setting up Jellyfin.

Migration

Bei dem Umzug auf einen neuen Proxmox Server musste ich nach der Wiederherstellung nesting für den Container aktivieren, da es ansonsten nicht möglich war auf Dateien der NAS zuzugreifen.

Dazu muss der Container heruntergefahren werden. Anschließend in der Shell des Hosts folgenden Befehl eingeben. (Container ID – hier 104 – mit der eigenen ersetzen!)

pct set 104 -features nesting=1

Quellen

  • youtube.de – Proxmox HomeServer Teil 30 – Installation von Jellyfin Media Server
  • forum.jellyfin.org – Collections don’t have thumbnails
  • reddit.com – Warum kann Jellyfin meine Medien nicht löschen?
Artikelaufrufe: 1134
Nach oben