- To: slug@xxxxxxxxxxx
- Subject: Re: [SLUG] NFS
- From: Roland Turner <raz@xxxxxxxxxxxxxx>
- Date: Sun Aug 13 18:05:56 2000
- Organization: -
Jon Biddell wrote:
> How do I mount a remote filesystem to appear as part of my current one
> ?
>
> i.e. I need to mount slave:/home/jon to appear under
> xena:/home/jon/slave.
mount -t nfs slave:/home/jon /home/jon/slave
(Notes:
- Run as root, obviously. (Non-root approaches exist, but are somewhat
more complex. Also, how often do you wish to do this?)
- Requires xena:/home/jon/slave.to exist already, and presumably be
accessible to jon.
- You almost certainly require that the user called jon has the same UID
(number) on both machines.)
- Raz