2024-01-22, 01:15 AM
you can't let linux auto mount the drive, you need to use fstab
the issue is permission not the name of the drive
https://help.ubuntu.com/community/Fstab
temporarily you can do this so that the drive is mounted with permission to jellyfin
sudo umount /media/username/media
mkdir -p /jellyfin/media
sudo mount -t exfat -o uid=(jfuid),gid=(jfgid) /dev/sd(whatever) /jellyfin/media
outside of that i couldn't offer much as i can't hold lectures on linux
keep in mind jellyfin server also runs on windows and mac so you could always take one of those routes if linux isn't your deal
the issue is permission not the name of the drive
https://help.ubuntu.com/community/Fstab
temporarily you can do this so that the drive is mounted with permission to jellyfin
sudo umount /media/username/media
mkdir -p /jellyfin/media
sudo mount -t exfat -o uid=(jfuid),gid=(jfgid) /dev/sd(whatever) /jellyfin/media
outside of that i couldn't offer much as i can't hold lectures on linux
keep in mind jellyfin server also runs on windows and mac so you could always take one of those routes if linux isn't your deal