これは標準的な問題だと思っていましたが、インターネットで答えを見つけることができないようです。
ネットワークマネージャーを使用して、Kubuntu 15.04をインストールしたDell Inspiron 7527をインストールしています。残念ながら、イーサネット接続はネットワークマネージャに表示されません。
ネットワークマネージャーで新しい有線接続を追加しようとしましたが、機能しませんでした。
Windows(デュアルブートを実行している)では、イーサネットは完全に機能するため、ケーブルに問題はありません。
私の/etc/network/interfaces
:
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
Sudo lshw -C Network
を実行すると、イーサネットカードが認識されていることがわかります。
~ Sudo lshw -C Network
*-network
description: Wireless interface
product: Wireless 7260
vendor: Intel Corporation
physical id: 0
bus info: pci@0000:02:00.0
logical name: wlan0
version: 73
serial: fc:f8:ae:c2:06:64
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
configuration: broadcast=yes driver=iwlwifi driverversion=3.19.0-25-generic firmware=25.17.12.0 ip=192.168.1.83 latency=0 link=yes multicast=yes wireless=IEEE 802.11bgn
resources: irq:47 memory:e3500000-e3501fff
*-network
description: Ethernet interface
product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
vendor: Realtek Semiconductor Co., Ltd.
physical id: 0.1
bus info: pci@0000:03:00.1
logical name: eth0
version: 12
serial: e0:db:55:c2:ce:83
size: 10Mbit/s
capacity: 1Gbit/s
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=half firmware=rtl8411-2_0.0.1 07/08/13 latency=0 link=no multicast=yes port=MII speed=10Mbit/s
resources: irq:43 ioport:4000(size=256) memory:e3404000-e3404fff memory:e3400000-e3403fff
Sudo dhclient eth0
を実行しても何も実行されません(ハングするだけです)。
ifconfig eth0
出力は次のとおりです。
eth0 Link encap:Ethernet HWaddr e0:db:55:c2:ce:83
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)
Sudo ifconfig eth0 up
も試しましたが、何も変わりませんでした。
それが役に立てば幸い。この本当に厄介な問題の解決策を見つけることができないようです(私の仕事では、イーサネットをアクティブにする必要があります)。
ご協力ありがとうございました!!
問題は、異常なRealtekドライバーr8169にあります。多くの人がautonegotiationを無効にすると役立つと報告しました。次のコマンドを使用してオフにできます。
Sudo ethtool -s eth0 speed 100 duplex full autoneg off