2
  • Dell Vostro 5459
  • BIOS version 1.1.3
  • Secure boot is off
  • Kernel version: Tried installing latest kernel too. Tried copy file intel corporation 3160 wireless to /lib/frameware

Output of sudo lshw -C network:

*-network DISABLED      
   description: Wireless interface
   product: Wireless 3165
   vendor: Intel Corporation
   physical id: 0
   bus info: pci@0000:02:00.0
   logical name: wlp2s0
   version: 79
   serial: e0:94:67:b4:d5:a2
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
   configuration: broadcast=yes driver=iwlwifi driverversion=4.15.11-041511-generic firmware=29.610311.0 latency=0 link=no multicast=yes wireless=IEEE 802.11
   resources: irq:129 memory:d5100000-d5101fff
*-network
   description: Ethernet interface
   product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
   vendor: Realtek Semiconductor Co., Ltd.
   physical id: 0
   bus info: pci@0000:03:00.0
   logical name: enp3s0
   version: 10
   serial: 20:47:47:75:d2:4d
   size: 10Mbit/s
   capacity: 1Gbit/s
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
   configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=half firmware=rtl8168g-3_0.0.1 04/23/13 latency=0 link=no multicast=yes port=MII speed=10Mbit/s
   resources: irq:124 ioport:d000(size=256) memory:d5004000-d5004fff memory:d5000000-d5003fff
*-network
   description: Ethernet interface
   physical id: 3
   logical name: enp0s20f0u3
   serial: 4e:1d:ca:50:7e:8e
   capabilities: ethernet physical
   configuration: broadcast=yes driver=rndis_host driverversion=22-Aug-2005 firmware=RNDIS device ip=192.168.1.156 link=yes multicast=yes
Pablo Bianchi
  • 15,657
Raven
  • 39
  • 1
    This question would be much improved if you would be so kind as to [edit] your post to include the output of rfkill list all or alternately a pastie to the output of the wireless info script found hereThank you for helping us help you! – Elder Geek Mar 21 '18 at 18:04

2 Answers2

3

To bring up a disabled adapter you can use the command:

sudo ifconfig wlp2s0 up

If it tells you, that it is blocked by rfkill you can see if something is blocked with the command

rfkill list

and unblock it with

rfkill unblock all
L.S.
  • 320
0

In my case none of the above worked for me. The solution for me was to press the button with the antenna symbol on my laptop. Usually a button on the top row where the function keys are.

Wifi is enabled by default, perhaps I accidentally hit that button (a dedicated button on my Dell inspiron 7000 without FN combo).

Nik
  • 111