2025-01-19, 02:26 AM
(This post was last modified: 2025-01-19, 02:28 AM by theguymadmax. Edited 3 times in total.)
(2025-01-19, 02:05 AM)4r5hw45twh Wrote:(2025-01-19, 01:52 AM)theguymadmax Wrote: Looks fine so far. But yeah you don't need to split out your hard drive, just point to a root folder in it. The device and render are for GPU support example here: https://jellyfin.org/docs/general/admini...ualization
When you're ready, cd to the directory containing your Docker Compose file and run the following command:
Code:docker-compose up -d
Ok, and is the "read_only" part at the bottom fine/needed? Noticed it in the guide but not on yours.
So, in regards to this fstab thing...I got my UUID and see it's a NTFS filesystem and I'm at the part where we are making the fstab command. So far, I have:
Code:UUID=8854yy54ce-6ce9-446-befa-bb6f67e8fe44 /media/username/Media ntfs defaults 0 0
Could I make that a shorter path like yours is? Example: Your mounts seem to be on the root of /media while my path is /media/username/Media and then I see my folders in my hard drive. If possible, it would be nice to have it like yours, where it just shows at /media, but the guide says to make sure the path I choose isn't at Home directory and to make sure the folder already exists and is empty....but my /media root technically isn't empty since it then has "/username/Media" before it shows my folders.
So, basically, it'd be:
Code:UUID=8854yy54ce-6ce9-446-befa-bb6f67e8fe44 /media ntfs defaults 0 0
The read only is personal preference. Some people don't want Jellyfin to write files to their media folders. I like to have all my metadata stored with the media folders, like pictures and the NFO files.
You need to make one more level and you need to make the folder before you mount your drive. so cd into /media the sudo mkdir Media so your fstab would look like this
Code:
UUID=8854yy54ce-6ce9-446-befa-bb6f67e8fe44 /media/Media ntfs defaults 0 0
This is my fstab entry:
Code:
UUID=92583D42423D3EEM /media/Media1 ntfs defaults,uid=1000,gid=1000 0 0