well symlinks don't seem to work very well with ftp servers, so i'll give you
an example of something you can do .. lets say you have a second hard
drive that has some of the data you want to host on a ftp server, which
we'll call /mnt/storage ... and lets say you have your ftp users locked in a
folder /home/ftpusers, in which this is the location you want people to
collect the data ... so first you will make a folder within this location, so you use the
mkdir command, and we'll call it
ftpfolder .. so now we have a folder called /home/ftpusers/ftpfolder ... you can use the mount command with the following argument ..
Code:
mount --bind /mnt/storage /home/ftpusers/ftpfolder
so the contents of /mnt/storage will not only be located in /mnt/storage
but now also in /home/ftpusers/ftpfolder ...
i am pretty sure this is the question your asking, just state otherwise
if i misunderstood you ....