Scream275
Anmeldungsdatum: 18. März 2011
Beiträge: 18
|
Hallo,
Ich hab ein kleines Problem, und zwar ist bei mir keine eth0 Schnittstelle vorhanden.
Mein System: | Linux roy-System-Product-Name 2.6.38-10-generic #46-Ubuntu SMP Tue Jun 28 15:07:17 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux
|
eine ausgabe bei :
gibt es nicht.
IfConfig zeigt logischerweise auch kein eth0 an.
Ich habe als Motherboard ein Asus M2n32SLI-Deluxe wifi Edition.
Dies sollte 2 MCP55 Ethernet Ports haben.
Was genau mache ich Falsch? Grüße
|
Ubunux
Anmeldungsdatum: 12. Juni 2006
Beiträge: 17158
|
zeige mal die Ausgabe von lspci -nnk | grep -i net -A2 und cat /etc/udev/rules.d/70-persistent-net.rules
|
Scream275
(Themenstarter)
Anmeldungsdatum: 18. März 2011
Beiträge: 18
|
lspci gibt mir auch mit den optionen nichts aus ☹ Zweiteres erzeugt dann das hier: 1
2
3
4
5
6
7
8
9
10
11
12
13
14 | # 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.
# USB device 0x0bda:0x8187 (usb)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:15:af:22:0f:f9", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="wlan*", NAME="wlan0"
# USB device 0x05ac:0x1297 (usb)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="7c:c5:37:89:cb:4b", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
# USB device 0x07d1:0x3c09 (usb)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:1b:11:c5:dd:a5", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="wlan*", NAME="wlan1"
|
Was genau sagt mir das jetzt?
|
praseodym
Supporter
Anmeldungsdatum: 9. Februar 2009
Beiträge: 22111
Wohnort: ~
|
Schau mal hier. Für diese Karten kann ein Modulparameter helfen: echo "options forcedeth msi=0 msix=0" | sudo tee /etc/modprobe.d/forcedeth.conf
sudo modprobe -rf forcedeth
sudo modprobe -v forcedeth
sudo depmod -a
sudo update-initramfs -u
Kontrollen: lspci -nnk | grep -iA2 net
lsmod
dmesg | grep force
ifconfig -a
|
Scream275
(Themenstarter)
Anmeldungsdatum: 18. März 2011
Beiträge: 18
|
Danke, hat super geholfen. Ich befürchte allerdings das es gar nicht daran lag, sondern das ich die Interfaces im Bios deaktiviert hatte ☹ *IDIOT* Hatte gerade erst beim Restart rein geguggt. Trotzdem ein super großes DANKE!
|