From: Arun Vidarjee on 13 Jun 2010 06:07 I have a new Lenovo X201 notebook with the ethernet chip Intel 82577LM. I had the infamous "black screen" problem booting Linux, both archlinux and Ubuntu latest. Could install arch by booting with the kernel parameter nomodeset. It loads the module e1000e. # uname -a Linux myhost 2.6.34-ARCH #1 SMP PREEMPT Mon May 17 08:36:58 UTC 2010 i686 Intel(R) Core(TM) i5 CPU M 540 @ 2.53 GHz GenuineIntel GNU/Linux # ifconfig eth0 eth0 Link encap:Ethernet HWaddr 5c:.... UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:2392 errors:0 dropped:0 overruns:0 frame:0 TX packets:4448 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes: 745374 (718.1 Kb) TX bytes:552664 (539.7 Kb) Memory:f2500000-f2520000 # dhcpcd eth0 dhcpcd: eth0: broadcasting for a lease dhcpcd: eth0: offered 192.168.1.103 from 192.168.1.1 dhcpcd: eth0: acknowledged 192.168.1.103 from 192.168.1.1 dhcpcd: eth0: checking for 192.168.1.103 dhcpcd: eth0: leased 192.168.1.103 for 86400 seconds dhcpcd: eth0: MTU set to 1492 ifconfig eth0 is still identical to above. # ping 192.168.1.1 Network is unreachable No route either. Any idea how do progress? Arun
From: Lusotec on 13 Jun 2010 08:46 Arun Vidarjee wrote: > Any idea how do progress? Try setting a static IP and pinging the router. If it succeeds then you confirm that the hardware and driver are working and the problem is likely related to DHCP setup. Regards.
From: Arun Vidarjee on 13 Jun 2010 10:09 On 13.06.2010 14:46, Lusotec wrote: > > Try setting a static IP and pinging the router. If it succeeds then you > confirm that the hardware and driver are working and the problem is likely > related to DHCP setup. Forgot to mention that, this is so far Windows 7 dual boot. And Windows get an address from dhcp. I will try setting a static ip though. Arun
From: Arun Vidarjee on 14 Jun 2010 04:07 Am 13.06.2010 16:09, schrieb Arun Vidarjee: > On 13.06.2010 14:46, Lusotec wrote: >> >> Try setting a static IP and pinging the router. If it succeeds then you >> confirm that the hardware and driver are working and the problem is >> likely related to DHCP setup. > > Forgot to mention that, this is so far Windows 7 dual boot. And Windows > get an address from dhcp. I will try setting a static ip though. Tried that with no success: # ifconfig eth0 192.168.1.110 # ifconfig eth0 .... inet addr: 192.168.1.110 Bcast:192.168.1.255 Mask: 255.255.255.0 # route 192.168.1.0 * 255.255.255.0 U 0 0 0 eth0 # ping 192.168.1.1 .... Destination Host Unreachable .... 6 Packets transmitted, 0 received, +3 error, 100% packet loss # route add default gw 192.168.1.1 ping no improvement. I have the feeling, the packets are not sent. Any pointers to the cause of this problem? Arun
From: Lusotec on 14 Jun 2010 07:13
Arun Vidarjee wrote: > Am 13.06.2010 16:09, schrieb Arun Vidarjee: >> On 13.06.2010 14:46, Lusotec wrote: >>> >>> Try setting a static IP and pinging the router. If it succeeds then you >>> confirm that the hardware and driver are working and the problem is >>> likely related to DHCP setup. >> >> Forgot to mention that, this is so far Windows 7 dual boot. And Windows >> get an address from dhcp. I will try setting a static ip though. > > Tried that with no success: > # ifconfig eth0 192.168.1.110 > # ifconfig eth0 > ... > inet addr: 192.168.1.110 Bcast:192.168.1.255 Mask: 255.255.255.0 > > # route > 192.168.1.0 * 255.255.255.0 U 0 0 0 eth0 > > # ping 192.168.1.1 > ... Destination Host Unreachable > ... > 6 Packets transmitted, 0 received, +3 error, 100% packet loss > > # route add default gw 192.168.1.1 > ping no improvement. > > I have the feeling, the packets are not sent. > > Any pointers to the cause of this problem? Do you have a firewall active? Try disabling it and the repeat the above. Check the firewall rules with the command: iptables --list Confirm that the gateway really is at 192.168.1.1. Try to ping another machine in the LAN. If the above does not work, after setting a static IP and pinging what is the output the following command: iptables --list cat /proc/net/arp cat /proc/net/dev ifconfig dmesg | tail -n 20 Regards. |