イーサネットと Wi-Fi の問題 Ubuntu 15.10 Lenovo z50

イーサネットと Wi-Fi の問題 Ubuntu 15.10 Lenovo z50

最近、Lenovo z50 に Windows 10 と一緒に Ubuntu 15.10 をインストールしました。LAN ケーブルを接続し、インターネット接続は非常に良好です (Windows 10 では非常に良好に動作します)。プロキシ設定も構成しましたが、Ubuntu では有線ケーブルが接続されていないと表示されます。また、WiFi オプションもありません。

cat /etc/network/interfaces

output:

# interface(s) file used by ifup(8) & ifdown(8)
auto lo
iface lo inet loopback

cat /etc/NetworkManager/NetworkManager.conf

output: 

[main]
plugins=ifupdown,keyfile,ofono
dns=dnsmasq
[ifupdown]
managed=false

cat /etc/resolv.conf

output:

#Dynamic resolv.conf(s) file for glibic resolver(3) generated by     resolvconf(8)
#      DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN

ifconfig -a

output:

enp1s0     link encap:Ethernet HWaddr 28:d2:44:f7:9f:a5
              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)
lo               Link  encap:Local Loopback
               inet addr:127.0.0.1   Mask:255.0.0.0
              inet6 addr:  ::1/128  Scope:Host
              UP LOOPBACK RUNNING  MTU:65536  Metric:1
               RX packets:9174  errors:0  dropped:0  overruns:0  frame:0
              TX packets:9174  errors:0  dropped:0  overruns:0  carrier:0
               collisions:0  txqueuelen:0
              RX bytes:682595 (682.5 KB)  TX bytes:682595 (682.5 KB)

追加の設定が必要なのか、ドライバーがないのか判断できません。さまざまなフォーラムやブログを検索しましたが、何も機能しませんでした。Smiley Sad

ご協力いただければ幸いです。ありがとうございます

答え1

お使いのコンピュータに必要なドライバを確認するには、

lspci

私の場合:

sumit@Lenovo-Z50-70:~/Documents/programs$ lspci
00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT   Integrated Graphics Controller (rev 0b)
00:03.0 Audio device: Intel Corporation Haswell-ULT HD Audio Controller (rev 0b)
00:14.0 USB controller: Intel Corporation 8 Series USB xHCI HC (rev 04)
00:16.0 Communication controller: Intel Corporation 8 Series HECI #0 (rev 04)
00:1b.0 Audio device: Intel Corporation 8 Series HD Audio Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 3 (rev e4)
00:1c.3 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 4 (rev e4)
00:1c.4 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 5 (rev e4)
00:1d.0 USB controller: Intel Corporation 8 Series USB EHCI #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation 8 Series LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation 8 Series SATA Controller 1 [AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation 8 Series SMBus Controller (rev 04)
01:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd.   RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 10)
02:00.0 Network controller: Broadcom Corporation BCM43142 802.11b/g/n (rev 01)
03:00.0 3D controller: NVIDIA Corporation GM108M [GeForce 840M] (rev ff)

私の場合、これはRealtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 10)です。realtekドライバについては次のリンクを使用してください。

http://www.realtek.com.tw/downloads/downloadsView.aspx?Langid=1&PNid=13&PFid=5&Level=5&Conn=4&DownTypeID=3&GetDown=false

インターネットに接続していない場合は、他のシステムで実行してください。ダウンロードしてシステムのデスクトップにコピーします。解凍します。ターミナルを開きます。次のコマンドを使用します。

cd Desktop/r8168-8.041.01 (go to the extracted folder)
sudo ./autorun.sh

パスワードを入力してください。これによりドライバーがインストールされ、接続が確立されます。動作しない場合は、システムを再起動してみてください。

システムに Broadcom ワイヤレス ドライバーがインストールされている場合は、Wi-Fi については次の回答を参照してください。

http://askubuntu.com/questions/55868/installing-broadcom-wireless-drivers

関連情報