I want to keep the /home directory in a folder on a disk partition other than the boot partition. Please note I said folder, not partition, meaning that I do not want to mount an entire partition as /home.
Bad fstab entry: LABEL=G_Giant_257/common/home /home
would be exactly what I want, if only such syntax would work.
Actual (good) fstab:
LABEL=G_Giant_257 /mnt/g auto nosuid,nodev,nofail,nobootwait,x-gvfs-show 0 0
Now I need to get the command
mount /mnt/g/common/home /home
to execute before anything tries to access /home. Of course, I want all references to any user's "/home/~" directory to access a sub-folder of /common/home on my G_Giant_257 partition.
The kicker: my root partition is ext4, the G_Giant_257 partition is NTFS, so I don't see how a link could be made to work. I am running ubuntu 16.04.
What do you recommend, please?