Anyone else having problems mounting nfs shares with nfs-utils-1.2.1?
'mount.nfs' complains I'm passing it a bad nfs option no matter what options I give it, including no options. Strace shows that nfs.mount is passing a weird-looking IP address string to the 'mount' system call (man 2 mount), e.g.: mount("k2:/media/d", "/mnt/nfs", "nfs", 0, "addr=192.168.0.100,vers=4,client"...) = -1 EINVAL ^^^^^^^^^^^^^^ When I revert back to nfs-utils-1.1.4-r1 the IP address string is back to normal and the mount works correctly, e.g.: mount("k2:/media/d", "/mnt/nfs", "nfs", 0, "addr=192.168.0.100") = 0 Something is tacking on those extra chars after the IP address, but I'm not sure yet where that string is actually generated. Any ideas?