Jellyfin Forum
Ubuntu permissions - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting)
+--- Thread: Ubuntu permissions (/t-ubuntu-permissions)

Pages: 1 2 3


RE: Ubuntu permissions - TheDreadPirate - 2023-12-09

You would change this in /etc/fstab

sudo nano /etc/fstab

find /dev/sda1

Replace

Code:
/dev/sda1 /media/lucky/Jellyfin1 ext4 rw,nosuid,nodev,relatime,errors=remount-ro 0 0

with

Code:
/dev/sda1 /media/lucky/Jellyfin1 ext4 defaults 0 0

Stop jellyfin

Code:
sudo systemctl stop jellyfin

unmount the volume or reboot.  here is how to remount without rebooting.

Code:
sudo umount /media/lucky/Jellyfin1
sudo mount -a