wiki-js/home/server/jellyfin.md

43 lines
994 B
Markdown

---
title: Jellyfin
description:
published: true
date: 2024-12-22T11:07:43.409Z
tags: server, jellyfin
editor: markdown
dateCreated: 2024-11-30T20:26:03.534Z
---
# Jellyfin
The Jellyfin is a media server located here and is accessible on the home local network. Jellyfin is used to stream videos and audio on the network.
- Port : 8096
All the contents for the server is installed on the external SSD drive in the following folders:
- Jellyfin - contains metadata for the server▸
- Shows - contains video series▸
- Movies - contains movies▸
- Music - contains music files '▸
- Podcast - contains podcast files
## Installation
Jellyfin consist of both the server and the web interface. Both can be installed with pacman by:
```
sudo pacman -S jellyfin
```
### systemd
```
[Unit]
Description=Jellyfin Media Server
After=network.target
[Service]
User=lukas
ExecStart=/usr/bin/jellyfin --webdir /usr/share/jellyfin/web/
Restart=on-failure
[Install]
WantedBy=multi-user.target
```