2024-08-27, 06:35 PM
Since Emby uses the same port, what likely happened after you installed Emby was that your browser was showing you a cached Jellyfin page.
What problem are you having exactly?
Installing Jellyfin on Debian based distros is super easy. We have a script that will fully automate the install.
If you've already installed Jellyfin and couldn't get it to work, you can follow these steps to ensure you are starting clean.
The chown command is to resolve a known issue during fresh installations of 10.9.10 where the permissions aren't being set correctly.
What problem are you having exactly?
Installing Jellyfin on Debian based distros is super easy. We have a script that will fully automate the install.
Code:
curl https://repo.jellyfin.org/install-debuntu.sh | sudo bash
If you've already installed Jellyfin and couldn't get it to work, you can follow these steps to ensure you are starting clean.
Code:
sudo apt purge jellyfin*
sudo rm -rf /etc/jellyfin /var/lib/jellyfin
curl https://repo.jellyfin.org/install-debuntu.sh | sudo bash
sudo chown -R jellyfin: /etc/jellyfin /var/lib/jellyfin /var/log/jellyfin /var/cache/jellyfin /usr/share/jellyfin
sudo systemctl restart jellyfin
The chown command is to resolve a known issue during fresh installations of 10.9.10 where the permissions aren't being set correctly.