centos 6.3 mount NFS

 

[root@cn-svn-multi-01 ~]# mount -t nfs 192.168.0.234:/mnt/nfs/test/nfs-1 /mnt
mount: wrong fs type, bad option, bad superblock on 192.168.0.234:/mnt/nfs/test/nfs-1,
       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
 
[root@cn-svn-multi-01 ~]# yum list |grep nfs-utils
[root@cn-svn-multi-01 ~]# /etc/init.d/nfs restart
 
[root@cn-svn-multi-01 mnt]# mount -t nfs 192.168.0.234:/mnt/nfs/test/nfs-1 /mnt
mount.nfs: rpc.statd is not running but is required for remote locking.
mount.nfs: Either use '-o nolock' to keep locks local, or start statd.
mount.nfs: an incorrect mount option was specified
[root@cn-svn-multi-01 /]# mount -t nfs 192.168.0.234:/mnt/nfs/test/nfs-1 /11/ -o nolock

你可能感兴趣的:(centos,mount,nfs,6.3)