ubuntu 桂载nfs文件系统出错
NFS server    Centos 5.2        192.168.1.56
Client             Ubuntu 9.0.4    192.168.1.55
1、挂载时出现以下错误
mount -t nfs 192.168.1.56:/usr/local/nfs/ys000 /var/nfs/ys000

mount: wrong fs type, bad option, bad superblock on 192.168.1.56:/usr/local/nfs/ys000,
             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

分析.原因是没有安装  nfs-common
使用apt-get 安装
apt-get install nfs-common
2、从新挂载目录,成功!
root@ubuntu:~# mount -t nfs 192.168.1.56:/usr/local/nfs/ys000 /var/nfs/ys000
root@ubuntu:~# df -h
Filesystem                        Size    Used Avail Use% Mounted on
/dev/sda1                         9.2G    411M    8.4G     5% /
tmpfs                                 437M         0    437M     0% /lib/init/rw
varrun                                437M     96K    437M     1% /var/run
varlock                             437M         0    437M     0% /var/lock
udev                                    437M    160K    437M     1% /dev
tmpfs                                 437M         0    437M     0% /dev/shm
lrm                                     437M    2.4M    434M     1% /lib/modules/2.6.28-12-server/ volatile
/dev/sda9                            61G    538M     57G     1% /data
/dev/sda8                            28G    1.7G     25G     7% /usr
/dev/sda7                         8.3G    708M    7.2G     9% /var
192.168.1.56:/usr/local/nfs/ys000
                                             19G    9.0G    9.0G    51% /var/nfs/ys000