web-dev-qa-db-ja.com

イーサネットコントローラーで使用されないr8168モジュール

Eth0インターフェイスが常にダウンしていることを発見しました(WiFiにwlan0を使用しています)。いくつかのグーグルの後、r8169モジュールをr8168(apt-get install r8168-dkms)に置き換えましたが、再起動後に「使用中のカーネルドライバー」行が見つかりませんでした。

root@controller:/home/me# lspci -v

07:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101/2/6E PCI Express Fast/Gigabit Ethernet controller (rev 07)
Subsystem: Dell RTL8101/2/6E PCI Express Fast/Gigabit Ethernet controller
Flags: bus master, fast devsel, latency 0, IRQ 10
I/O ports at e000 [size=256]
Memory at f7c00000 (64-bit, non-prefetchable) [size=4K]
Memory at f0000000 (64-bit, prefetchable) [size=16K]
Capabilities: [40] Power Management version 3
Capabilities: [50] MSI: Enable- Count=1/1 Maskable- 64bit+
Capabilities: [70] Express Endpoint, MSI 01
Capabilities: [b0] MSI-X: Enable- Count=4 Masked-
Capabilities: [d0] Vital Product Data
Capabilities: [100] Advanced Error Reporting
Capabilities: [140] Virtual Channel
Capabilities: [160] Device Serial Number 01-00-00-00-36-4c-e0-00
Capabilities: [170] Latency Tolerance Reporting

dkms statusからの出力は次のとおりです。

root@controller:/home/me# dkms status
oem-audio-hda-daily, 0.201409230816~ubuntu14.04.1, 3.13.0-106-generic, x86_64: installed
oem-touchpad-alps-synaptics, 0.5wataugafour1, 3.13.0-106-generic, x86_64: installed
oem-touchpad-alps-synaptics, 0.5wataugafour1, 4.4.0-57-generic, x86_64: installed
r8168, 8.043.02, 4.4.0-57-generic, x86_64: installed
wireless-dw1707-precise-all, 3.12rc5p5, 3.5.0-61-generic, x86_64: installed

また:

root@controller:/home/me# lshw -C NETWORK
USB                       
*-network        
   description: Wireless interface
   product: QCA9565 / AR9565 Wireless Network Adapter
   vendor: Qualcomm Atheros
   physical id: 0
   bus info: pci@0000:06:00.0
   logical name: wlan0
   version: 01
   serial: a8:a7:95:b5:dd:f9
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress bus_master cap_list rom ethernet physical wireless
   configuration: broadcast=yes driver=ath9k driverversion=4.4.0-57-generic firmware=N/A ip=192.168.0.57 latency=0 link=yes multicast=yes wireless=IEEE 802.11bgn
   resources: irq:18 memory:f7d00000-f7d7ffff memory:f7d80000-f7d8ffff
*-network UNCLAIMED
   description: Ethernet controller
   product: RTL8101/2/6E PCI Express Fast/Gigabit Ethernet controller
   vendor: Realtek Semiconductor Co., Ltd.
   physical id: 0
   bus info: pci@0000:07:00.0
   version: 07
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress msix vpd bus_master cap_list
   configuration: latency=0
   resources: ioport:e000(size=256) memory:f7c00000-f7c00fff memory:f0000000-f0003fff
*-network DISABLED
   description: Ethernet interface
   physical id: 2
   logical name: virbr0-nic
   serial: 52:54:00:71:16:c9
   size: 10Mbit/s
   capabilities: ethernet physical
   configuration: autonegotiation=off broadcast=yes driver=tun driverversion=1.6 duplex=full link=no multicast=yes port=twisted pair speed=10Mbit/s

また:

root@controller:/home/me# modinfo r1869
modinfo: ERROR: Module r1869 not found.

おそらく、起動時にr8168が検出されなかったため、ifconfig -a出力にeth0インターフェイスがありません。

誰が私が間違ったことや忘れたことを教えてもらえますか?前もって感謝します!

1

BIOSでsecure bootをオフにします。 Ubuntuは、これを有効にすると、署名されていないカーネルモジュールをロードしません。

編集:

R8168-dkmsは、Realtek Semiconductor Co.、Ltd. RTL8101/2/6E PCI Express Fast/Gigabit Ethernetコントローラ(rev 07)に適したドライバではありません。

アンインストールする:

Sudo dkms remove r8168/8.043.02 --all#r8168カーネルモジュールをアンインストールする

Sudo apt-get purge r8168-dkms#はr8168-dkmsをアンインストールします

ファイル/etc/modprobe.d/r8168-dkms.confが存在しないことを確認してください。

コンピューターを再起動します。

質問を編集して、modinfo r8169の最初の3行のterminal出力とSudo lshw -C networkを含めます

http://www.realtek.com.tw/downloads/downloadsView.aspx?Langid=1&PNid=7&PFid=7&Level=5&Conn=4&DownTypeID=3&GetDown=false#2 からrtl8101ドライバーをダウンロードする必要があります。 =

enter image description here

ダウンロードファイルに含まれるREADMEファイルの指示に従い、これを確認します Realtekイーサネットドライバーエラーubuntu 16.04starting with 「For product:RTL8101/2/6E PCI Express」)を含む回答。

1
heynnema