Hello,
This is a bit of a ZFS noob question so I may just need the right docs link. I'm setting up a ZFS pool & datasets to use for Plex which would consist of a parent "media" directory and subdirectories for "movies" and "tv shows". I've set them all up with zfs create pretty easily on the Proxmox host:
My next step would be to bind mount /zfs-pool/media to the LXC container running Plex. However, I read a comment that mentioned that parent zfs datasets (/zfs-pool/media) do not show files in child datasets (/zfs-pool/media/movies). I haven't found that documented, is that accurate? If so, should i delete the /media/movies & /media/tv shows zfs datasets and instead create them with mkdir? In general how is this any different than the above:
Bonus question: I've seen mention of setting size=0 on bind mounts to make them a directory. Is this something that applies in this case?
This is a bit of a ZFS noob question so I may just need the right docs link. I'm setting up a ZFS pool & datasets to use for Plex which would consist of a parent "media" directory and subdirectories for "movies" and "tv shows". I've set them all up with zfs create pretty easily on the Proxmox host:
Code:
zfs create /zfs-pool/media
zfs create /zfs-pool/media/movies
zfs create "/zfs-pool/media/tv shows"
My next step would be to bind mount /zfs-pool/media to the LXC container running Plex. However, I read a comment that mentioned that parent zfs datasets (/zfs-pool/media) do not show files in child datasets (/zfs-pool/media/movies). I haven't found that documented, is that accurate? If so, should i delete the /media/movies & /media/tv shows zfs datasets and instead create them with mkdir? In general how is this any different than the above:
Code:
zfs create /zfs-pool/media
cd /zfs-pool/media
mkdir movies
mkdir "tv shows"
Bonus question: I've seen mention of setting size=0 on bind mounts to make them a directory. Is this something that applies in this case?