Comment 17 for bug 45842

Revision history for this message
Paul Filo (paul-filo) wrote :

I had the same problem and a lot of troubles with network interfaces names with Gutsy. Between boot from initrd and real boot, eth devices changed their names and, for me, that's why nfs doesn't mount.
My workaround :
edit /etc/udev/rules.d/70-persistent-net.rules, delete or comment all rules and write rules with driver (not with MAC) and with names found on first boot, for example :

# dmesg | grep eth
[ 20.491562] eth0: SiS 900 PCI Fast Ethernet at 0xdc00, IRQ 12, 00:0a:e6:41:1d:b6.
[ 21.252607] eth1: RTL8169sb/8110sb at 0xe0814f00, 00:1b:11:59:b5:91, XID 10000000 IRQ 3

/etc/udev/rules.d/70-persistent-net.rules :
SUBSYSTEM=="net", DRIVERS=="sis900", NAME="eth0"
SUBSYSTEM=="net", DRIVERS=="r8169", NAME="eth1"

Now my NFS are mounted at startup.
Hope this help you.