okay,
new install, in kubuntu only, haven't run the linuxmce script.
blacklisted r8169
update initramfs
autorun the r8168 driver.
lsmod shows r8168 is there
ifconig only shows eth0 and lo
ifconfig -a shows:
eth0 Link encap:Ethernet HWaddr 00:25:22:97:f0:dc
inet addr:192.168.1.51 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::225:22ff:fe97:f0dc/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:111952 errors:0 dropped:0 overruns:0 frame:0
TX packets:60177 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:157668742 (157.6 MB) TX bytes:4721272 (4.7 MB)
Interrupt:220 Base address:0x8000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:20 errors:0 dropped:0 overruns:0 frame:0
TX packets:20 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:1000 (1000.0 B) TX bytes:1000 (1000.0 B)
pan0 Link encap:Ethernet HWaddr ea:fc:4c:83:c4:eb
inet6 addr: fe80::e8fc:4cff:fe83:c4eb/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:6 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 B) TX bytes:468 (468.0 B
There is a pan0 there and there is no bluetooth on the motherboard.
lshw -C network
WARNING: you should run this program as super-user.
*-network UNCLAIMED
description: Ethernet controller
product: RTL-8169 Gigabit Ethernet
vendor: Realtek Semiconductor Co., Ltd.
physical id: a
bus info: pci@0000:01:0a.0
version: 10
width: 32 bits
clock: 66MHz
capabilities: cap_list
configuration: latency=64 maxlatency=64 mingnt=32
*-network
description: Ethernet interface
physical id: 1
logical name: pan0
serial: ea:fc:4c:83:c4:eb
capabilities: ethernet physical
configuration: broadcast=yes driver=bridge driverversion=2.3 firmware=N/A multicast=yes
Does this mean that the second network card is being picked up as pan0 instead?
/etc/udev/rules.d/70-persistent-net.rules file
# This file maintains persistent names for network interfaces.
# See udev(7) for syntax.
#
# Entries are automatically added by the 75-persistent-net-generator.rules
# file; however you are also free to add your own entries.
# PCI device 0x10de:0x03ef (forcedeth)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:25:22:97:f0:dc", ATTR{type}=="1", KERNEL=="$
# PCI device 0x10ec:0x8169 (r8169)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:a1:b0:69:73:45", ATTR{type}=="1", KERNEL=="$
I don't know much about this but finding stuff on google. is it possible that the eth1 in the rules file is blocking the second card from coming up as eth1?
Josh
PS also tried undoing it by
#the blacklist r8169 out.
sudo update-initramfs -k all -u
reboot
no eth1 or r8169 in lsmod
modprobe r8169 shows;
FATAL: Module r8169 not found.
the file r8169.ko is in the /lib/....../drivers/net
?lost?