LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices

Reply
 
LinkBack Search this Thread
Old 05-31-2007, 11:49 AM   #1
cccc
Senior Member
 
Registered: Sep 2003
Distribution: Debian Squeeze / Wheezy
Posts: 1,435

Rep: Reputation: 38
nfs warning: mount version older than kernel


hi

I cannot mount nfs from Dreambox DM 500-C:
Code:
root@dreambox:~> uname -a
Linux dreambox 2.6.9 #1 Sun Apr 8 00:58:35 CEST 2007 ppc unknown
root@dreambox:~>
to nfs server (DS106j from synology):
Code:
storage> uname -a
Linux storage 2.4.22-uc0 #458 Tue Apr 3 01:09:49 CST 2007 ppc unknown
due to these errors:
Code:
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:
Code:
/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:
Code:
May 31 16:12:34 192.168.200.11 kernel: nfs warning: mount version older than kernel
to mount nfs from any other linux machine in LAN works perfectly.

on nfs server:
Code:
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
Code:
  580 1           420 S   /opt/sbin/portmap
  888 root        224 S   grep portmap
storage> ps aux | grep nfs
Code:
  890 root        224 S   grep nfs
maybe I cannot mount because of different kernel or nfs versions ?

knows someone howto solve this problem ?

kind regards
cccc

Last edited by cccc; 05-31-2007 at 12:08 PM.
 
Old 05-31-2007, 12:13 PM   #2
Emerson
Senior Member
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~
Posts: 2,635

Rep: Reputation: 47
mount -t nfs -o rw,nolock 192.168.200.12://volume1/box /var/mnt/
 
Old 05-31-2007, 01:02 PM   #3
cccc
Senior Member
 
Registered: Sep 2003
Distribution: Debian Squeeze / Wheezy
Posts: 1,435

Original Poster
Rep: Reputation: 38
Quote:
Originally Posted by Emerson
mount -t nfs -o rw,nolock 192.168.200.12://volume1/box /var/mnt/
thanks, but still doesn't work.
 
Old 05-31-2007, 01:17 PM   #4
Emerson
Senior Member
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~
Posts: 2,635

Rep: Reputation: 47
I've got these "mount version older than kernel" warnings occasionally in the past, it never denied me to mount NFS volumes. I think your problem lies elsewhere. Any firewalls active?
 
Old 05-31-2007, 02:27 PM   #5
cccc
Senior Member
 
Registered: Sep 2003
Distribution: Debian Squeeze / Wheezy
Posts: 1,435

Original Poster
Rep: Reputation: 38
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.
 
Old 06-07-2007, 06:08 PM   #6
nanoq
LQ Newbie
 
Registered: Jun 2007
Posts: 1

Rep: Reputation: 0
Quote:
Originally Posted by cccc
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.

Now that it's solved for you, maybe you could help me. I've just bought a network harddisk (Western Digital) and I can't mount it from my Dreambox and there some kind of linux installed on it. Unlike you I'm not familiar with linux. How do I reinstall nfs-utils on my dreambox? I typed "ps aux | grep nfs" on my Dreambox and there were no nfsd present. Or is it my network drive missing it?

I can mount to my laptop (Windows) with CIFS through the webinterface, I've tried with nfs, but it didn't work, I hope it's because I have problems with the nfsd (what ever that is).

I'm really lost right now
 
Old 06-08-2007, 02:00 AM   #7
cccc
Senior Member
 
Registered: Sep 2003
Distribution: Debian Squeeze / Wheezy
Posts: 1,435

Original Poster
Rep: Reputation: 38
Quote:
Originally Posted by nanoq
Now that it's solved for you, maybe you could help me. I've just bought a network harddisk (Western Digital) and I can't mount it from my Dreambox and there some kind of linux installed on it. Unlike you I'm not familiar with linux. How do I reinstall nfs-utils on my dreambox? I typed "ps aux | grep nfs" on my Dreambox and there were no nfsd present. Or is it my network drive missing it?

I can mount to my laptop (Windows) with CIFS through the webinterface, I've tried with nfs, but it didn't work, I hope it's because I have problems with the nfsd (what ever that is).

I'm really lost right now
what's the exact name of box with extenal harddisk ?
could you get command line via telnet or ssh ?
what kind of linux is it installed on it ?
Code:
# uname -a
is it nfs server running on box ?
Code:
ps aux | grep nfs
otherwise will be very difficult to be clairvoyant.

greetings
cccc
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
nfs version older than kernel gabsik Linux - Networking 13 05-31-2006 12:44 PM
nfs warning: mount version older than kernel Yalla-One Slackware 2 09-21-2005 03:00 PM
nfs warning: mount version older than kernel dgermann Linux - Networking 4 07-04-2005 04:30 PM
kernel build problems -how to install older gcc version? nocturna_gr Fedora 3 07-04-2005 08:56 AM
Gaim : Warning :: "Older version present" koodoo Linux - Newbie 1 06-08-2005 11:39 PM


All times are GMT -5. The time now is 01:34 AM.

Main Menu
 
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration