有线连接在更新后突然停止在 ubuntu 12.04 上工作

tek*_*teg 6 internet ethernet wired-networking ubuntu-12.04

这是事情!在没有有线互联网连接的第 5 天。在过去的 4 天里,我一直在搜索每个论坛和问答网站,直到我最终决定发布这个,所以我已经完成了我的功课。在我将笔记本电脑带到维修店进行硬件故障之前,我想先与你们确认一下。

问题描述: 就像问题说更新后我的有线连接突然停止工作。我正在使用 ubuntu 12.04 LTS。网络管理员说有线网络已断开连接。无线工作完美。而且它也不适用于 Windows 7,它说电缆已拔下。我已经在其他计算机上尝试过该电缆,它运行良好。

nm-工具输出:

NetworkManager Tool

State: connected (global)

- Device: wlan0  [Connectify-me] -----------------------------------------------
  Type:              802.11 WiFi
  Driver:            iwlwifi
  State:             connected
  Default:           yes
  HW Address:        9C:4E:36:29:F7:D4

  Capabilities:
    Speed:           58 Mb/s

  Wireless Properties
    WEP Encryption:  yes
    WPA Encryption:  yes
    WPA2 Encryption: yes

  Wireless Access Points (* = current AP)
    TP-LINK_8AB114:  Infra, A0:F3:C1:8A:B1:14, Freq 2452 MHz, Rate 54 Mb/s, Strength 25 WPA2
    ZTE_HG_0:        Infra, 00:1D:0F:BF:BE:61, Freq 2437 MHz, Rate 54 Mb/s, Strength 47
    ZTE_HG_0:        Infra, 00:21:27:C1:19:D9, Freq 2437 MHz, Rate 54 Mb/s, Strength 39
    *Connectify-me:  Infra, E8:39:DF:3E:AF:8E, Freq 2462 MHz, Rate 54 Mb/s, Strength 87 WPA2

  IPv4 Settings:
    Address:         192.168.241.104
    Prefix:          24 (255.255.255.0)
    Gateway:         192.168.241.1

    DNS:             192.168.241.1


- Device: eth0 -----------------------------------------------------------------
  Type:              Wired
  Driver:            atl1c
  State:             unavailable
  Default:           no
  HW Address:        00:1E:DE:F7:A6:C9

  Capabilities:
    Carrier Detect:  yes

  Wired Properties
    Carrier:         off
Run Code Online (Sandbox Code Playgroud)

sudo lshw -C 网络 输出:

  *-network               
       description: Ethernet interface
       product: AR8152 v2.0 Fast Ethernet
       vendor: Qualcomm Atheros
       physical id: 0
       bus info: pci@0000:01:00.0
       logical name: eth0
       version: c1
       serial: 00:1e:de:f7:a6:c9
       capacity: 100Mbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress vpd bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=atl1c driverversion=1.0.1.0-NAPI latency=0 link=no multicast=yes port=twisted pair
       resources: irq:48 memory:f7e00000-f7e3ffff ioport:e000(size=128)
  *-network
       description: Wireless interface
       product: Centrino Wireless-N 2200
       vendor: Intel Corporation
       physical id: 0
       bus info: pci@0000:02:00.0
       logical name: wlan0
       version: c4
       serial: 9c:4e:36:29:f7:d4
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
       configuration: broadcast=yes driver=iwlwifi driverversion=3.2.0-57-generic firmware=18.168.6.1 ip=192.168.241.104 latency=0 link=yes multicast=yes wireless=IEEE 802.11bgn
resources: irq:46 memory:f7d00000-f7d01fff
Run Code Online (Sandbox Code Playgroud)

ifconfig eth0 输出:

eth0      Link encap:Ethernet  HWaddr 00:1e:de:f7:a6:c9  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
          Interrupt:48 
Run Code Online (Sandbox Code Playgroud)

所以你有它伙计们!如果您需要其他信息,请告诉我。所以请帮帮我!!!

Mar*_*iae 4

你的情况不是一个明确的情况,所以我们采用逐次近似。

首先,发出以下命令:

    sudo service network-manager stop
    sudo ifconfig eth0 down
    sudo ifconfig eth0 up
    sudo dhclient eth0
Run Code Online (Sandbox Code Playgroud)

看看这是否有效。不管怎样,重新发布

    sudo service network-manager start
Run Code Online (Sandbox Code Playgroud)

第二。我们可以尝试安装最新的atl1c驱动。转到一个方便的空目录,然后发出以下命令:

    sudo apt-get install linux-headers-generic build-essential
    wget http://wireless.kernel.org/download/compat-wireless-2.6/compat-wireless.tar.bz2
    tar xvf compat-wireless.tar.bz2
    cd compat-wireless-2012-12-18/
    scripts/driver-select atl1c
    make
    sudo make install
    sudo rmmod atl1c 
    sudo modprobe atl1c
    sudo ifconfig eth0 down
    sudo ifconfig eth0 up
    sudo dhclient eth0
Run Code Online (Sandbox Code Playgroud)

现在看看这是否有效。请告诉我,如果可以解决,您的问题将需要几次迭代。