I have placed some large folders on a separate disk, in a single partition, but I want them to show up in my file system as if they were in my root partition. In fstab I mount the separate disk on /extern. The large folders are then in the file system as /extern/videos, /extern/music, but I would rather see just /videos, /music. I've read that, once upon a time, this was possible by mounting /extern with a line in fstab like
UUID=bb906568-0651-4eca-a111-dcab4d1a0bf1 /extern ext4 defaults,x-gvfs-hide 0 2
I then used "bind" to mount /videos and /music as aliases to /extern/videos and /extern/music. This works, but /extern still also shows up in the file system with its nested folders (/extern/videos and /extern/music), so that /videos and /music show up twice in the file system.
I tried comment=x-gvfs-hide, and I tried putting both variants in the bind column as well. No success.
Anyone know how I can hide the /extern folder?