ubuntuでnfs

nfs4で設定した方が安定するのでubuntu10.04でnfs4をつかう - 計算機と戯れる日々を参照

サーバ側

sudo apt-get install portmap nfs-common nfs-kernel-server

/etc/exportを設定したのち(no_subtree_checkが必要)
例:/abc 192.168.5.0/24(rw,no_subtree_check)

sudo exportfs -r にて接続を確認する

クライアント側

まさかnfsのクライアントが入ってないとは

i# mount -t nfs 192.168.5.22:/abc /mnt
mount: wrong fs type, bad option, bad superblock on 192.168.5.22:/abc,
       missing codepage or helper program, or other error
       (for several filesystems (e.g. nfs, cifs) you might
       need a /sbin/mount.<type> helper program)
       In some cases useful info is found in syslog - try
       dmesg | tail  or so

sudo apt-get install nfs-common
をインストールすればいい