Two RedHat boxes (or RedHat and another *NIX box)? If so use NFS, if RedHat+Windows use Samba. For NFS see "man exports" and "man nfs". I would also suggest looking over /usr/share/doc/nfs-utils-0.3.1/index.html. Better yet, read the HOWTO here:
http://nfs.sourceforge.net/On the server you'll need to turn on the "portmap", "nfs", "nfslock", and optionally "netfs" (netfs will mount any NFS shares you have listed in your /etc/fstab at boot time).
After you have the /etc/exports file set up on your server start these services on both server and client:
/sbin/chkconfig portmap on
/sbin/chkconfig nfs on
/sbin/chkconfig nfslock on
/sbin/chkconfig netfs on
/sbin/service portmap start
/sbin/service nfs start
/sbin/service nfslock start
/sbin/service netfs start
To manually mount an NFS share on your local machine you can do something like:
mount myserver:/nfsshare /localmountpoint
optionally add the NFS mount to your /etc/fstab on your client so it automatically mounts at boot time.
This assumes you are using RedHat 7.2 for your NFS server. You can make any UNIX machine an NFS server but how you start the portmap, mountd, lockd, and nfsd will be different.
When using NFS you need to take care to insure userIDs on each system have the same user number in /etc/password. Usually people that use NFS also use NIS so this happens automatically.
If you get really froggy you can set up automount (man automount) and share your home directory on your server so when you log on to your clients it will automatically mount your home directory from the server.
[ May 08, 2002: Message edited by: VoidMain ]