ubuntu-users@lists.ubuntu.com
[Top] [All Lists]

Re: NFS

Subject: Re: NFS
From: Matthew A Coulliette
Date: Wed, 15 Jul 2009 22:18:41 -0700
NoOp wrote:
> 1. You bottom post on this list
> (http://www.ubuntu.com/support/community/mailinglists/etiquette)
> 2. You advise how you actually managed to work out the bugs/issues. That
> way others that view the archives with similar problems may be able to
> use your solution to resolve their problem as well.


Howto install NFS on the server (9.04):

sudo apt-get install nfs-kernel-server nfs-common portmap
sudo dpkg-reconfigure portmap (do not bind loopback)
sudo /etc/init.d/portmap restart

sudo vi /etc/exports (add the following line to /etc/exports)
/path/on/server 192.168.X.X(rw,sync,no_root_squash,subtree_check)
Where the ip is the ip of the client machine.

sudo /etc/init.d/nfs-kernel-server restart
sudo exportfs -av


Howto install NFS on the client (9.04):

sudo apt-get install portmap nfs-common
sudo mkdir /path/on/client

Manual mount: (type this in a terminal on the client)
sudo mount -t nfs 192.168.X.X:/path/on/server /path/on/client
Where ip address is ip of the server.

Automatic mount:(add this to the fstab on the client)
192.168.X.X:/path/on/server /path/on/server nfs
rsize=8192,wsize=8192,timeo=14,intr (all one line)


Done. Lookout for making type-o's.
MatthewMPP

-- 
ubuntu-users mailing list
ubuntu-users@xxxxxxxxxxxxxxxx
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-users

<Prev in Thread] Current Thread [Next in Thread>