Jellyfin: Difference between revisions
From FlowerHouseWiki
No edit summary |
(→NFS) |
||
Line 14: | Line 14: | ||
__TOC__ | __TOC__ | ||
== Basic Setup == | == Basic Setup == | ||
=== NFS === | === NFS-Share === | ||
<p>Install required packages for nfs-share:</p> | |||
<syntaxhighlight lang="console"> | |||
apt install nfs-common nfs4-acl-tools | |||
</syntaxhighlight> | |||
<p>Mount the nfs-share (NAS) to the data folder where all the user files will be stored</p> | |||
<syntaxhighlight lang="console"> | |||
mount -t nfs 192.168.88.5:/mnt/zpool1/NextCloud /home/data/ | |||
</syntaxhighlight> | |||
<p>Edit fstab to mount at boot:</p> | |||
<syntaxhighlight lang="console"> | |||
nano /etc/fstab | |||
</syntaxhighlight> | |||
<p>Add following line at the end of file:</p> | |||
<syntaxhighlight lang="console"> | |||
192.168.88.5:/mnt/zpool1/NextCloud /home/data/ nfs defaults 0 0 | |||
</syntaxhighlight> | |||
== Additional Configuration == | == Additional Configuration == | ||
=== Mopidy Extension === | === Mopidy Extension === | ||
[https://jellyfin.org/docs/general/clients/mopidy.html#raspberry-pi-remote-controlled-speakers Link] | [https://jellyfin.org/docs/general/clients/mopidy.html#raspberry-pi-remote-controlled-speakers Link] |
Revision as of 17:02, 19 September 2021
IP: | 192.168.88.17 |
---|---|
MAC: | F2:1A:93:6C:B2:83 |
Domain: | media.flowerhouse.at |
OS: | Debian11 |
---|---|
RAM: | 1024MB |
Cores: | 4 |
Privileged: | Yes |
The Jellyfin-LXC is reachable under 192.168.88.17
which is located in the ServerVLAN.
The subdomain is media.flowerhouse.at which is handled by the ReverseProxy.
Basic Setup
Install required packages for nfs-share:
apt install nfs-common nfs4-acl-tools
Mount the nfs-share (NAS) to the data folder where all the user files will be stored
mount -t nfs 192.168.88.5:/mnt/zpool1/NextCloud /home/data/
Edit fstab to mount at boot:
nano /etc/fstab
Add following line at the end of file:
192.168.88.5:/mnt/zpool1/NextCloud /home/data/ nfs defaults 0 0