Thank you for making the question clear. Sorry if I was a bit abrupt earlier.
Quote:
3. mount a separate directory that resided on a different partition at the mount point that has just been created for all users.
Like frans I am having difficulty understanding item 3 in a unix context.
The Linux "mount" command is used to mount a filesystem on a mountpoint.
A mountpoint is an empty directory which acts as a pointer to the filesystem.
We would normally mount the filesystem on system startup using parameters in one line of "fstab". I can't see a reason to make this dynamic.
As frans correctly deduced, the conventional approach in unix is to use a soft link (see "man ln") to point a directory under a user's home directory to a directory in a filesystem which is under a different mountpoint from the user's home directory.
I am unclear whether there is to be one common directory for all users or multiple individual directories.
Quote:
1. check if a given directory is present in /home of all users
2. create the directory if it is not present to act as a mount point
If we are using soft links, items 1 and 2 only need to be done once for existing accounts and then as required when a new account is created.
(I had not seen posts #5 and #6 before eventually posting).