Thanks for the replies. Let me try and clarify what I am trying to do.
Say my filesystem structure is like the following:
#ls -F /home
lost+found/ dduck/ ysam/ bbunny/ mmartian/ k9/ fleghorn/
#ls -F /home/dduck
.dt/ junk textfile report freeps* search.f* yest.sh*
Now I want to mount /home/dduck as a filesystem. In AIX I can issue the command: 'mount anyname /home/dduck' and when I do a 'df .' from within /home/dduck it would show:
#df .Filesystem 512-blocks Free %Used Iused %Iused Mounted on
/dev/hd1 65536 56304 15% 839 11% /home/dduck
and the filesystem is not listed in /etc/filesystems (which on Solaris would be /etc/vfstab) because it is mounted ad-hoc.
Normally, if you did a 'mount /home/dduck' it would mount a filesystem over /home/dduck and if you did an 'ls' inside the dduck directory, it would be empty, however, in AIX, I can do the method listed above, and /home/dduck (the directory) is mounted /home/dduck (the filesystem) and having the files in /home/dduck seen and usable.
Thanks.