I recently installed Lubuntu 13.04 64-bit on one of my older computers (the computer is ancient - DDR1, no USB boot, yet it's 64-bit. Go figure.)
Anyway, the Wi-Fi adapter I tried to use malfunctioned very quickly, and, after a bit of troubleshooting, I gave up (for the time being.) I decided to try and get the built-in ethernet working. The Lubuntu box is wired via Ethernet to a computer running Windows XP, which is connected to Wi-Fi and is set to share it. Trouble is, Windows says the ethernet cable is unplugged, and the computer running Lubuntu is entirely oblivious to the existence of its Ethernet port. lspci | grep -i eth
returns absolutely nothing, so I can't even put the correct firmware on a USB stick and install it that way.
What's wrong? I will provide any computer/OS/BIOS/etc details requested.
UPDATE: Found out why Lubuntu wasn't recognizing the Ethernet - the BIOS had Onboard LAN disabled. I enabled it, but now the tray icon says "Ethernet - device not managed", and sudo ifup eth0
starts spamming a bunch of stuff about DHCP, and the command never finishes.
lspci -nn
andlshw -C network
– grimpitch May 23 '13 at 21:02sudo rmmod 8139too && sudo modprobe 8139cp
– grimpitch May 23 '13 at 21:49rmod
was an invalid command, butsudo modprobe -r 8139too
seemed to work. Adding the module8139cp
didn't fix it, though - the network tray icon now says "no network devices available", and running ifdown and ifup doesn't work - ifup says "could not configure hardware" or something like that. – JamesTheAwesomeDude May 23 '13 at 22:00mii-tool eth0 -F 10baseT-FD
then remove8139cp
and reload8139too
. – grimpitch May 23 '13 at 22:168139cp
was still loaded said it couldn't find interface eth0, but after loading8139too
running mii-tool exited with no output (and no effect.) I've already tried ifup/downing the enterface, and ifup eth0 still doesn't exit cleanly while running8139too
. However, even though the command never exited, I can still close the terminal. mii-tool only exits cleanly after ifup-ing eth0 while running 8139too. So I have no ideas. :/ – JamesTheAwesomeDude May 23 '13 at 22:43sudo mii-tool -v
says 10 Mbit, Full Duplex, No link. ifup says interface already configured, and the tray icon still says "Ethernet network | device not managed". – JamesTheAwesomeDude May 23 '13 at 23:21