3
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Ubuntu 16.04.5で有線LANが繋がらない

Posted at

はじめに

初めて自作PCを作成した。
マザボは GIGABYTE H370 AORUS GAMING 3 WIFI ATX ゲーミングマザーボード [Intel H370チップセット搭載] MB4342を購入。

しかし、ifconfigを打っても lo しか表示されず、ドライバーをインストールしようにも、makeや依存関係のdebがないなどで途方に暮れていた。
サポートにお電話したところ、本マザボはWindows用で、Linuxについてはよくわからない、とのことでした。

対応

USBは認識するため、ドライバ内蔵のUSB有線LANアダプタを購入。
PLANEX Windows/Mac/Linux対応 USB3.0 ギガビット有線LANアダプタ (ドライバ内蔵型で設定不要) USB-LAN1000R

上記を刺してもすぐには繋がらない。

sudo lshw -c Network

とすると*-network DISABLEDとなってるものがある。
これのlogical nameをメモ。

sudo ifconfig 上でメモしたlogical_name up

ifconfigを打つと、lo以外にもう1つ表示される。

sudo vi /etc/network/interfacesとする

おそらく8行ぐらいのみ表示される。
iface lo inet loopbackの下に下記追加

auto 先ほどメモしたlogical_name
iface 先ほどメモしたlogical_name inet dhcp
dns-nameservers 8.8.8.8 8.8.4.4

保存。

sudo /etc/init.d/networking restartとする。

pingを打ってネットワークにつながっていることを確認。

参考資料

12.10 - ping: unknown host google.com in UBUNTU SERVER - Ask Ubuntu

12.04 - How to change IP when /etc/network/interface file is missing? - Ask Ubuntu

drivers - Ethernet *-network DISABLED - Ask Ubuntu

3
8
4

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?