<html><body><div style="font-family: Arial; font-size: 12pt; color: #000000"><div>Hi Levi, welcome to the CLUE list!!<br></div><div><br></div><div>&nbsp; First off, I've got to give you credit for 1) making a real, honest effort to resolve this yourself, and 2) providing a lot of good data for us to "chew on".&nbsp; With that said...<br></div><div><br></div><div>&nbsp; If I'm interpreting the output correctly, it appears that the 'iwlwifi' module is loading correctly, &amp; the hardware is being detected/recognized.&nbsp; This isn't intended to be condescending at all, but does the device appear in the output of 'ifconfig -a'??&nbsp; I'm wondering if perhaps the interface is there, but simply needs to be enabled using "ifconfig wlan0 UP" (or similar).&nbsp; Speaking from my own experience, it's pretty easy sometimes to overlook the "simple stuff" &amp; dive right into the deeper waters, so to speak.<br></div><div><br></div><div>&nbsp; Two other thoughts - are there any relevant entries in the system log <em>(/var/log/messages on the RHEL variants that I'm familiar with, not 100% sure if it's the same on the Debian side of the fence)</em>.&nbsp; Finally, it occurs to me that it *might* be worthwhile to download &amp; fire up a LiveCD (or LiveUSB) version of a Red Hat/Fedora/CentOS distro, temporarily boot to that, &amp; see if the wireless interface is recognized/activated, or if you can get some other data on it that way.&nbsp; Sometimes it's helpful to be able to look at the problem from a slightly different angle...<br></div><div><br></div><div>&nbsp; Finally, did the wireless interface work under WinDoze??&nbsp; If so, that would likely rule out faulty hardware.<br></div><div><br></div><div>Again, welcome to the list!<br></div><div><br></div><div>T.<br></div><div><br></div><hr id="zwchr"><div style="color:#000;font-weight:normal;font-style:normal;text-decoration:none;font-family:Helvetica,Arial,sans-serif;font-size:12pt;"><b>From: </b>"Levi S. Darrell" &lt;levidarrell@gmail.com&gt;<br><b>To: </b>clue@cluedenver.org<br><b>Sent: </b>Thursday, February 25, 2016 3:48:13 PM<br><b>Subject: </b>[clue] Wireless card not working<br><div><br></div>Dear all at CLUE,<br><div><br></div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Thanks for your attention to my email. I have tried posting my problem on the debian mailing lists, as well as on the mailing list at linuxfromscratch.org, but have had no responses. I am hoping someone at CLUE can help me <br>with my problem. I live in Eastern Colorado and I have been using linux on my computers for a couple years now.<br><div><br></div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;In January of 2016, I purchased a Lenovo IdeaPad Y700 laptop, which had Windows 10 pre-installed on it. Since that time I have been unable to get my Intel Wireless 8260 Wireless card to work, either with my Debian Jessie <br>stable distro, or with an LFS system that I tried to build from scratch on another disk partition. After several hours searching the internet for solutions, I have seen that this is a common problem with Lenovo computers. Here <br>are the solutions that I have tried:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1. I recompiled the kernel, using the stable 4.4.1 version that I obtained from www.kernel.org via wget. Using apt, I downloaded the package kernel-package. Using menuconfig, I selected the iwlwifi drivers in the wireless <br>options. I made the image using the make-kpkg command, and compiled it using the fakeroot make-kpkg --initrd --revision=1.0.custom kernel_image command. I rebooted, but the drivers seemed not to have been correct, and the wifi card <br>continued not to work.<br><div><br></div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2. I then downloaded the most recent backports package using wget https://www.kernel.org/pub/linux/kernel/projects/backports/2016/01/22/backports-20160122.tar.gz. I untarred the package, issued the commands make <br>defconfig-wifi &amp;&amp; make &amp;&amp; make install. The program seemed to compile without any errors. I then searched in the /lib/modules/4.4.1/build/drivers/net/wireless/iwlwifi/pcie/drv.c file, where on line 425 I read:<br><div><br></div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{IWL_PCI_DEVICE(0x24F3, 0x1010, iwl8260_2ac_cfg)},<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>This seemed to indicate to me that my device should be supported, based on the lspci -nnk | grep 0280 -A2 command, which gives the following output:<br><div><br></div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;08:00.0 Network controller [0280]: Intel Corporation Wireless 8260 [8086:24f3] (rev 3a)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Subsystem: Intel Corporation Device [8086:1010]<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Kernel driver in use: iwlwifi<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>However, upon rebooting my machine, my wifi card still did not work.<br><div><br></div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3. I then attempted to manage a problem with rfkill by searching in the file /lib/modules/4.4.1/build/drivers/platform/x86/ideapad-laptop.c, which states:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;/*<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; * Some ideapads don't have a hardware rfkill switch, reading VPCCMD_R_RF<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; * always results in 0 on these models, causing ideapad_laptop to wrongly<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; * report all radios as hardware-blocked.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; */<br><div><br></div>At line 902, I added the following:<br><div><br></div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;.ident = "Lenovo Yoga 700",<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;.matches = {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo ideapad Y700 Touch-15ISK"),<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;},<br><div><br></div>This was because the output of the command dmidecode | grep -A3 '^System Information' was:<br><div><br></div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;System Information<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Manufacturer: LENOVO<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Product Name: 80NW<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Version: Lenovo ideapad Y700 Touch-15ISK<br><div><br></div>I guessed based on this that DMI_PRODUCT_VERSION should therefore be set to "Lenovo ideapad Y700 Touch-15ISK". However, upon reboot, rfkill list still showed the following:<br><div><br></div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0: hci0: Bluetooth<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Soft blocked: yes<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Hard blocked: no<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1: ideapad_wlan: Wireless LAN<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Soft blocked: no<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Hard blocked: yes<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2: ideapad_bluetooth: Bluetooth<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Soft blocked: no<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Hard blocked: yes<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3: phy0: Wireless LAN<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Soft blocked: no<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Hard blocked: no<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;I don't know why phy0 is showing up as a logical device, because that had not been showing up prior to my updating the kernel to 4.4.1. However, I don't think this is part of the problem. Since I am not a developer and I am not really versed in C or any other language, I have no idea if I made some kind of a mistake in some of the fixes that I tried to apply. I believe I have exhausted my capacity to troubleshoot the problem using web searches, and I <br>therefore am seeking some help here. The outputs of some other commands appear below for further information:<br><div><br></div>dmesg | grep -i iwl<br><div><br></div>[ &nbsp; &nbsp;2.477758] iwlwifi 0000:08:00.0: Direct firmware load for iwlwifi-8000C-20.ucode failed with error -2<br>[ &nbsp; &nbsp;2.484820] iwlwifi 0000:08:00.0: loaded firmware version 16.242414.0 op_mode iwlmvm<br>[ &nbsp; &nbsp;2.520860] iwlwifi 0000:08:00.0: Unsupported splx structure<br>[ &nbsp; &nbsp;2.557772] iwlwifi 0000:08:00.0: Detected Intel(R) Dual Band Wireless AC 8260, REV=0x208<br>[ &nbsp; &nbsp;2.558389] iwlwifi 0000:08:00.0: L1 Enabled - LTR Enabled<br>[ &nbsp; &nbsp;2.559215] iwlwifi 0000:08:00.0: L1 Enabled - LTR Enabled<br>[ &nbsp; &nbsp;2.567127] iwlwifi 0000:08:00.0: can't access the RSA semaphore it is write protected<br>[ &nbsp; &nbsp;2.718970] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'<br><div><br></div>lspci:<br><div><br></div>00:00.0 Host bridge: Intel Corporation Device 1910 (rev 07)<br>00:01.0 PCI bridge: Intel Corporation Device 1901 (rev 07)<br>00:02.0 VGA compatible controller: Intel Corporation Device 191b (rev 06)<br>00:14.0 USB controller: Intel Corporation Device a12f (rev 31)<br>00:16.0 Communication controller: Intel Corporation Device a13a (rev 31)<br>00:17.0 SATA controller: Intel Corporation Device a103 (rev 31)<br>00:1c.0 PCI bridge: Intel Corporation Device a111 (rev f1)<br>00:1c.2 PCI bridge: Intel Corporation Device a112 (rev f1)<br>00:1c.3 PCI bridge: Intel Corporation Device a113 (rev f1)<br>00:1f.0 ISA bridge: Intel Corporation Device a14e (rev 31)<br>00:1f.2 Memory controller: Intel Corporation Device a121 (rev 31)<br>00:1f.3 Audio device: Intel Corporation Device a170 (rev 31)<br>00:1f.4 SMBus: Intel Corporation Device a123 (rev 31)<br>01:00.0 3D controller: NVIDIA Corporation Device 139b (rev a2)<br>07:00.0 SD Host controller: O2 Micro, Inc. SD/MMC Card Reader Controller (rev 01)<br>08:00.0 Network controller: Intel Corporation Wireless 8260 (rev 3a)<br>09:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 15)<br><div><br></div>part of lshw output:<br><div><br></div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;*-pci:2<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; description: PCI bridge<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; product: Intel Corporation<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; vendor: Intel Corporation<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; physical id: 1c.2<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; bus info: pci@0000:00:1c.2<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; version: f1<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: 32 bits<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; clock: 33MHz<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; capabilities: pci pciexpress msi pm normal_decode bus_master cap_list<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; configuration: driver=pcieport<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; resources: irq:124 memory:94100000-941fffff<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; *-network DISABLED<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;description: Wireless interface<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;product: Wireless 8260<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;vendor: Intel Corporation<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;physical id: 0<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;bus info: pci@0000:08:00.0<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;logical name: wlan0<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;version: 3a<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;serial: a4:34:d9:2f:eb:21<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;width: 64 bits<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;clock: 33MHz<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;configuration: broadcast=yes driver=iwlwifi driverversion=4.4.1 firmware=16.242414.0 latency=0 link=no multicast=yes wireless=IEEE 802.11abgn<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;resources: irq:130 memory:94100000-94101fff<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;*-pci:3<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; description: PCI bridge<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; product: Intel Corporation<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; vendor: Intel Corporation<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; physical id: 1c.3<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; bus info: pci@0000:00:1c.3<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; version: f1<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: 32 bits<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; clock: 33MHz<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; capabilities: pci pciexpress msi pm normal_decode bus_master cap_list<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; configuration: driver=pcieport<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; resources: irq:125 ioport:3000(size=4096) memory:94000000-940fffff<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; *-network<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;description: Ethernet interface<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;vendor: Realtek Semiconductor Co., Ltd.<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;physical id: 0<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;bus info: pci@0000:09:00.0<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;logical name: eth0<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;version: 15<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;serial: 50:7b:9d:5c:a7:1f<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;size: 100Mbit/s<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;capacity: 1Gbit/s<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;width: 64 bits<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;clock: 33MHz<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full ip=192.168.1.100 latency=0 link=yes multicast=yes port=MII speed=100Mbit/s<br>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;resources: irq:126 ioport:3000(size=256) memory:94004000-94004fff memory:94000000-94003fff<br><div><br></div>lsmod | grep -i iwl:<br><div><br></div>iwlmvm &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;303104 &nbsp;0 <br>mac80211 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;552960 &nbsp;1 iwlmvm<br>iwlwifi &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 176128 &nbsp;1 iwlmvm<br>cfg80211 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;466944 &nbsp;3 iwlwifi,mac80211,iwlmvm<br>compat &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 16384 &nbsp;4 cfg80211,iwlwifi,mac80211,iwlmvm<br><div><br></div>head -n7 /proc/cpuinfo:<br><div><br></div>processor&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: 0<br>vendor_id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: GenuineIntel<br>cpu family&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: 6<br>model&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: 94<br>model name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: Intel(R) Core(TM) i7-6700HQ CPU @ 2.60GHz<br>stepping&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: 3<br>microcode&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: 0x39<br><div><br></div>Note that the ethernet card is working properly.<br><div><br></div>Thank you for your attention to my email.<br><div><br></div>Sincerely,<br><div><br></div>Levi S. Darrell<br>_______________________________________________<br>clue mailing list: clue@cluedenver.org<br>For information, account preferences, or to unsubscribe see:<br>http://cluedenver.org/mailman/listinfo/clue<br></div><div><br></div></div></body></html>