
Ubuntu日本語フォーラム

ログインしていません。
NUC5CPYHにはINTELの無線LANチップ(Network controller: Intel Corporation Wireless 3165 (rev 81))が入っていますが、BIOSにも無線LAN機能は
表示されません。
lspci の結果は次の通り
00:00.0 Host bridge: Intel Corporation Device 2280 (rev 21)
00:02.0 VGA compatible controller: Intel Corporation Device 22b1 (rev 21)
00:12.0 SD Host controller: Intel Corporation Device 2296 (rev 21)
00:13.0 SATA controller: Intel Corporation Device 22a3 (rev 21)
00:14.0 USB controller: Intel Corporation Device 22b5 (rev 21)
00:18.0 DMA controller: Intel Corporation Device 22c0 (rev 21)
00:18.6 Serial bus controller [0c80]: Intel Corporation Device 22c6 (rev 21)
00:18.7 Serial bus controller [0c80]: Intel Corporation Device 22c7 (rev 21)
00:1a.0 Encryption controller: Intel Corporation Device 2298 (rev 21)
00:1b.0 Audio device: Intel Corporation Device 2284 (rev 21)
00:1c.0 PCI bridge: Intel Corporation Device 22c8 (rev 21)
00:1c.1 PCI bridge: Intel Corporation Device 22ca (rev 21)
00:1c.2 PCI bridge: Intel Corporation Device 22cc (rev 21)
00:1f.0 ISA bridge: Intel Corporation Device 229c (rev 21)
00:1f.3 SMBus: Intel Corporation Device 2292 (rev 21)
02:00.0 Network controller: Intel Corporation Wireless 3165 (rev 81)
03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 15)
dmesg | grep iwl での結果は下記の通り
masuhisa@masuhisa-NUC:~$ dmesg | grep iwl
[ 5.947683] iwlwifi 0000:02:00.0: Direct firmware load for iwlwifi-7265D-15.ucode failed with error -2
[ 5.947720] iwlwifi 0000:02:00.0: Direct firmware load for iwlwifi-7265D-14.ucode failed with error -2
[ 5.952424] iwlwifi 0000:02:00.0: loaded firmware version 25.30.13.0 op_mode iwlmvm
[ 6.170605] iwlwifi 0000:02:00.0: Detected Intel(R) Dual Band Wireless AC 3165, REV=0x210
[ 6.174501] iwlwifi 0000:02:00.0: L1 Enabled - LTR Enabled
[ 6.177674] iwlwifi 0000:02:00.0: L1 Enabled - LTR Enabled
[ 6.289114] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[ 6.883709] iwlwifi 0000:02:00.0 wlp2s0: renamed from wlan0
[ 7.076409] iwlwifi 0000:02:00.0: L1 Enabled - LTR Enabled
[ 7.077704] iwlwifi 0000:02:00.0: L1 Enabled - LTR Enabled
[ 7.140122] iwlwifi 0000:02:00.0: L1 Enabled - LTR Enabled
[ 7.140920] iwlwifi 0000:02:00.0: L1 Enabled - LTR Enabled
1,2行目に failed with error-2 と出ていますが、これはなにが悪いのでしょうか?
また無線LAN機能を使えるにはどうしたらいいのでしょうか?
オフライン
Ubuntu のバージョンは?
下記ページによると、kernel 4.1 以降からサポートされているようですので、15.10 もしくは、開発中の 16.04 が必要なようです。
http://askubuntu.com/questions/657774/how-to-get-my-intel-wireless-3165-to-work
オフライン
14.04であればLTSのカーネルでも行けそうですね。
http://gihyo.jp/admin/serial/01/ubuntu-recipe/0278
このあたりが参考になるのではないかと。
オフライン
siさん、ikuyaさん、 アドバイスありがとうございます。
ubuntuのバージョンは、 15.10 です。
結論から言いますと、自己解決出来たみたいです。!
上記のメッセージから、インテルの無線LANチップは正常に稼働してるようなので、
etcの下に、wpa_supplicant.confのファイルがなかったので新しく作りました。
(なぜ無かったのかはわかりません!)
中身は
network={
ssid="Buffalo-G-xxxx"
scan_ssid=1
key_mgmt=WPA-PSK
psk=" "
}
network={
ssid="Buffalo-A-xxxx"
scan_ssid=1
key_mgmt=WPA-PSK
psk=" "
}
ssidはバッファローの無線ルーターのアクセスポイント名
pskはそれぞれのパスワードです。
オフライン