2024-03-27, 07:49 PM
(This post was last modified: 2024-03-27, 07:49 PM by TheDreadPirate.)
Based on the path your mount is currently using, I am assuming it is being auto-mounted by your OS. Check out this wiki page.
https://help.ubuntu.com/community/Fstab
Instead of letting your OS auto-mount the drive, we want to manually mount it by adding it to /etc/fstab, which is what Linux reads in to mount disks at boot.
You would run "sudo fdisk -l" and find the UUID for your drive with your media. Then you would add a line that looks something like this to /etc/fstab.
I'm assuming your drive is EXT4, but if it isn't then change "ext4" to the appropriate format (ntfs-3g, exfat, etc). If it isn't EXT4, we will need to take extra steps to make sure Jellyfin can read it.
https://help.ubuntu.com/community/Fstab
Instead of letting your OS auto-mount the drive, we want to manually mount it by adding it to /etc/fstab, which is what Linux reads in to mount disks at boot.
You would run "sudo fdisk -l" and find the UUID for your drive with your media. Then you would add a line that looks something like this to /etc/fstab.
Code:
/dev/UUID-OF-YOUR-DRIVE /media/library ext4 defaults 0 0
I'm assuming your drive is EXT4, but if it isn't then change "ext4" to the appropriate format (ntfs-3g, exfat, etc). If it isn't EXT4, we will need to take extra steps to make sure Jellyfin can read it.