无法建立有线连接-没有 eth0

无法建立有线连接-没有 eth0

我使用的是 ubuntu trusty 14.04,最近由于未知原因丢失了有线以太网连接。我得到了 eth0 no such device 和其他相关错误。我尝试了其他帖子中的许多解决方案,但我可能把事情搞得更糟了。我还删除了 /etc/udev/rules.d/70-persistent-net.rules,并尝试重新生成,但没有成功。现在,我的网络总是被禁用,我无法启用。

请注意,这是一个双启动,并且我在旧的 Windows 安装中确实连接得很好。

下面我附上了一些我认为有用的输出。

任何帮助都将受到高度赞赏。

tania@tania:~$ ifconfig -a
lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:202 errors:0 dropped:0 overruns:0 frame:0
          TX packets:202 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:15228 (15.2 KB)  TX bytes:15228 (15.2 KB)

tania@tania:~$ cat /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp


tania@tania:~$ sudo lshw -C network
[sudo] password for tania: 
  *-network UNCLAIMED     
       description: Ethernet controller
       product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       bus info: pci@0000:06:00.0
       version: 06
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress msix vpd bus_master cap_list
       configuration: latency=0
       resources: ioport:de00(size=256) memory:fbcff000-fbcfffff memory:fbcf8000-fbcfbfff

答案1

看来驱动程序模块在启动时没有加载。让我们尝试修复它。在终端中:

sudo -i
echo r8169  >>  /etc/modules
exit

重新启动并让我们获得您的报告。

相关内容