Eth0이 잡히지 않고 네트워크가 되지 않습니다ㅠㅠ

우분투 버전은 10.04 입니다.
커널 업데이트 후 재부팅을 하고 나서 인터넷이 전혀 안되고 있습니다.
구글링으로 이것저것 찾아보며 시도해 보았으나 되질 않는데
혹시 이런 현상에 대해 아시는 분이 계시다면 답변 부탁 드리겠습니다ㅠㅠ

[b:36p4d2x9]# /etc/init.d/networking restart[/b:36p4d2x9]
SIOCSIFDDR: No such device
eth0: ERROR while getting interface flags: No such device
SIOCSIFNETMASK: No such device
eth0: ERROR while getting interface flags: No such device
Failed to bring up eth0.
[OK]

[b:36p4d2x9]# ifconfig eth0[/b:36p4d2x9]
eth0: error fetching interface information: Device not found

[b:36p4d2x9]# ifconfig[/b:36p4d2x9]
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:36 errors:0 dropped:0 overruns:0 frame:0
TX packets:36 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:2160 (2.1 KB) TX bytes:2160 (2. KB)

[b:36p4d2x9]# lshw -C network [/b:36p4d2x9]
*-network UNCLAIMED
description: Ethernet controller
product: intel Corporation
vendor: intel Corporation
physical id: 19
bus info: pci@0000:00:19.0
version: 05
width: 32 bits
clock: 33MHz
capabilities: pm msi bus_master cap_list
configuration: latency=0
resources: memory:fb60000-fb61ffff memory:fb28000-fb628fff ioport:f040(size=32)

[b:36p4d2x9]# cat /etc/udev/rules.d/70-persistent-net.rules[/b:36p4d2x9]
#PCI device 0x8086:0x1503 (e1000e)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?", ATTR{address}=="<mac-address>", ATTR{type}=="1", KERNEL=="eth", NAME="eth0"

혹시 추가적으로 더 필요하신 정보 있으시면 말씀해 주세요.
언제든지 답변 남기도록 하겠습니다 ㅠㅠ!

lshw -C network에서 UNCLAIMED 나오는 건 모듈(드라이버) 로딩 중에 문제가 생긴 것 같습니다.

ip link로 비활성화된 인터페이스가 있는지 확인하시고
$ ip link

커널 메세지를 확인해보세요.
$ dmesg | grep -e eth -e e100

그리고 관련 모듈 backports가 있는지 확인하시고
$ sudo software-properties-gtk -> enable backports
$ sudo apt-get update
$ apt-cache search backports

없으시면 개선된 드라이버 소스를 받아서 빌드해야 할 수도 있습니다.
(관련 모듈 이름으로 구글 검색)