Operating System - Linux
1823471 Members
2384 Online
109660 Solutions
New Discussion юеВ

nfs warning: mount version older than kernel

 
SOLVED
Go to solution
'chris'
Super Advisor

nfs warning: mount version older than kernel

hi

I cannot mount nfs from Dreambox DM 500-C:

root@dreambox:~> uname -a
Linux dreambox 2.6.9 #1 Sun Apr 8 00:58:35 CEST 2007 ppc unknown
root@dreambox:~>


to the nfs server (DS106j from synology):

storage> uname -a
Linux storage 2.4.22-uc0 #458 Tue Apr 3 01:09:49 CST 2007 ppc unknown


due to the following errors:

root@dreambox:~> mount -t nfs 192.168.200.12:/volume1/box /var/mnt/nfs
mount: Mounting 192.168.200.12:/volume1/box on /var/mnt/nfs failed: Input/outp
ut error

root@dreambox:~> mount -t nfs 192.168.200.12:/volume1/box /hdd
mount: Mounting 192.168.200.12:/volume1/box on /hdd failed: Input/output error

root@dreambox:~> mount -t nfs -o rw,nolock 192.168.200.12:/volume1/box /var/mnt/
nfs
mount: Mounting 192.168.200.12:/volume1/box on /var/mnt/nfs failed: Input/output
error

root@dreambox:~> mount -t nfs -o rw,nolock,rsize=4096,wsize=4096 192.168.200.12:/volume1/box /var/mnt/hdd
mount: Mounting 192.168.200.12:/volume1/box on /var/mnt/hdd failed: Input/output error


my exports file:

/volume1/box 192.168.200.0/255.255.255.0(rw,sync,no_root_squash)


in /var/log/messages from client I have this error message:

May 31 16:12:34 192.168.200.11 kernel: nfs warning: mount version older than kernel


knows someone howto solve this problem ?

kind regards
chris
3 REPLIES 3
'chris'
Super Advisor

Re: nfs warning: mount version older than kernel

to mount nfs from any other linux machine in LAN works perfectly.

on nfs server:

storage> lsmod
Module Size Used by Tainted: P
nfsd 71168 0
hid 18164 0 (unused)
printer 8048 0 (unused)
usb-storage 29828 0 (unused)
usb-ohci 19972 0 (unused)
ehci-hcd 19700 0 (unused)
synobios 7416 2
sk98lin 148944 1
quota_v2 8160 2
usbcore 68896 1 [hid printer usb-storage usb-ohci ehci-hcd]
sg 33804 0 (unused)
sd_mod 16212 0 [printer usb-storage]
scsi_mod 90016 2 [usb-storage sg sd_mod]
ntfs 94080 0 (unused)
vfat 11308 0 (unused)
reiserfs 243776 0 (unused)
netlink_dev 2016 0 (unused)
fat 40176 0 [vfat]
appletalk 23440 12


storage> ps aux | grep portmap
580 1 420 S /opt/sbin/portmap
888 root 224 S grep portmap


storage> ps aux | grep nfs
890 root 224 S grep nfs


maybe I cannot mount because of different kernel or nfs versions ?
Ivan Ferreira
Honored Contributor
Solution

Re: nfs warning: mount version older than kernel

According to this message:

"mount version older than kernel"

I would try to update the util-linux package, the package that contains the "mount" command.
Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?
'chris'
Super Advisor

Re: nfs warning: mount version older than kernel

thanks, this problem is solved now.

I've reinstalled nfs-utils
and it seems nfsd was not started:

storage> ps aux | grep nfs
602 root SW [nfsd]
873 root 224 S grep nfs
storage>

I cannot understand how other machines could mount nfs.