SOLVED: Media on mounted drives not showing up - 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: SOLVED: Media on mounted drives not showing up (/t-solved-media-on-mounted-drives-not-showing-up) |
RE: Media on mounted drives not showing up - lonlygamerx - 2024-03-13 ill try that then and see if it works. Though i feel like its not that as i had it setup the same way previously but where i mounted the media-storage like /mnt/media-storage and there it worked fine, the docker-compose file is exactly the same as before even the hdd is the same from my old system Update: Did not work, tried unmount and mount mediaStorage and changing to that even in the docker-compose.yml but had no effect, still see no media at all in the docker container and the media isnt some special format like the music is just .mp3 RE: Media on mounted drives not showing up - TheDreadPirate - 2024-03-13 What is the UID and GID for "lonlygamerx"? Code: id lonlygamerx RE: Media on mounted drives not showing up - lonlygamerx - 2024-03-13 id lonlygamerx uid=1000(lonlygamerx) gid=1000(lonlygamerx) groups=1000(lonlygamerx),4(adm),24(cdrom),27(sudo),30(dip),46(plugdev),110(lxd),1001(youtube-admins),1005(docker) RE: Media on mounted drives not showing up - TheDreadPirate - 2024-03-13 Definitely a weird problem. I didn't see any ACLs, you are using a ext4 file system with default mount parameters, the UID/GID has permissions all the way down. At this point "chmod -R 777 /mediaStorage" or whatever it is called now. Just for a sanity check. RE: Media on mounted drives not showing up - lonlygamerx - 2024-03-13 Sadly that sanity check did not help, still no media is shown up RE: Media on mounted drives not showing up - TheDreadPirate - 2024-03-13 Another sanity check. Code: cat /proc/mounts What are the ACTUAL parameters for /mediaStorage. I'm running out of ideas. With the info you provided it should be working. RE: Media on mounted drives not showing up - lonlygamerx - 2024-03-13 not sure what mean by parameters for the mediaStorage is. Code: cat /proc/mounts RE: Media on mounted drives not showing up - TheDreadPirate - 2024-03-13 Code: /dev/sdc1 /mnt/media-storage ext4 rw,relatime 0 0 This. I just wanted to make sure there weren't any weird parameters besides "rw,relatime". RE: Media on mounted drives not showing up - lonlygamerx - 2024-03-13 Any other ideas of what i can do? The issue i find strange is i had the same setup on my old system (i replaced my main drive) and on there i mounted it like /mnt/media-storage and there the docker jellyfin could find it easily even though i just had /media-storage in the volume mappings. Ive also tried resetting completly the container like deleting the container and the data folder it had made for the configs to see if that help but sadly didn't. RE: Media on mounted drives not showing up - TheDreadPirate - 2024-03-13 Try this. Instead of your data dir, lets also delete the VFS that the container creates. Stop the docker container for jellyfin. It is fine to keep the /config directory. Then run this command. Code: docker volume prune --force --all This will delete the temp VFS for Jellyfin. When you start Jellyfin back up it will re-pull the Jellyfin image and recreate the VFS. |