web-dev-qa-db-ja.com

xubuntuの有線ネットワーク接続がr8169で機能しない

私はxubuntu 15.04を搭載した新しいラップトップに取り組んでいます。ワイヤレスは正常に動作しています。有線接続とは、プラグを差し込むと接続され、2秒程度で切断されることを意味します。 「ネットワークを有効にする」にチェックマークが付いています。スイッチからのイーサネットケーブルは、他のxubuntuマシンで完全に機能しています。有線接続を取得するにはどうすればよいですか?

henk@henk-W330AU:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 15.04
Release:    15.04
Codename:   vivid
henk@henk-W330AU:~$ Sudo lshw -c Network
  *-network               
       description: Wireless interface
       product: Wireless 7265
       vendor: Intel Corporation
       physical id: 0
       bus info: pci@0000:02:00.0
       logical name: wlan0
       version: 48
       serial: 60:57:18:da:6c:54
       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.74 latency=0 link=yes multicast=yes wireless=IEEE 802.11abgn
       resources: irq:51 memory:f7100000-f7101fff
  *-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: 80:fa:5b:16:62:dd
       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=full firmware=rtl8411-2_0.0.1 07/08/13 ip=192.168.1.82 latency=0 link=yes multicast=yes port=MII speed=10Mbit/s
       resources: irq:49 ioport:e000(size=256) memory:f7014000-f7014fff memory:f7010000-f7013fff
2
Henk

このイーサネットカード用に別のドライバーをインストールしてみてください。

Sudo apt-get install r8168-dkms

それでも解決しない場合は、ケーブル、両側の接点を確認してください。

解説

Realtek Ethernet RTL8111/8168アダプターは、一般的にLinuxカーネルですぐに使用できます。そのためのr8169モジュールがあります。ほとんどの場合、うまく機能します。

ただし、これらのアダプターの一部のハードウェアリビジョンは、まだ十分にサポートされていない場合があります。この場合のように、パケットが失われたり、接続できないことがあります。カーネルメンテナーにバグとして報告する必要があります。

回避策として、Realtekのエンジニアが開発および保守したドライバーを使用できます。 Ubuntuリポジトリでr8168-dkmsとして利用できます。

このパッケージはr8169をブラックリストに載せ、代わりにr8168をインストールします。削除された場合、r8169が復元されます。

2
Pilot6