Lets imagine that there is an NFS share made on a remote PC (10.0.0.5), and we want to mount it on our local PC on /mnt/foo
# mkdir /mnt/foo # mount -o tcp 10.0.0.:/home/bar /mnt/fooThe "-o tcp" part is to mount using NFS over TCP which is more reliable, but may be a bit slower.
Tags: Linux, NFS, Gr33n Data
No comments:
Post a Comment