3

I did a fresh install of Ubuntu 18.04 on a Dell Inspiron 5448 (previously I had Windows 10 on this computer). The wifi (Intel Wireless 7265) does not work with the live disk neither does after installation. I also tried two USB-Wifi Adaptors, one from Cisco (Linksys WUSB100 Range Plus) and one from TP-LINK (Realtek RTL8188EUS). The adaptors do not work either, but both work plug and play on my Manjaro XFCE installation at home (Kernel 14.04).

In the top right drop down menu of the Ubuntu Desktop I get PCI Wi-Fi OFF and/or USB Wi-Fi OFF, but clicking on the option Turn on does not have any effect. The Wi-FI settings shows No Wi-Fi Adaptor Found, although on the top of the window it is written Wireless 7265 (Dual Band Wireless-AC 7265). Both show as disabled (see below).

I already a attempted several instruction from several forums without success. I appreciate any help. Thanks!

The output of the wireless script is available here (with the TP-Link adaptor also plugged in).

Zanna
  • 70,465
  • 1
    According to this: https://downloads.dell.com/manuals/all-products/esuprt_laptop/esuprt_inspiron_laptop/inspiron-14-5448-laptop_setup%20guide_en-us.pdf the wireless is activated with Fn+PrtScr. Is there any improvement if you press the key combination? – chili555 Aug 21 '18 at 18:48
  • No. This key combination only activates/deactivates airplane mode. – Rodrigo Castelan Carlson Aug 21 '18 at 21:29
  • Press it and run: rfkill list all Press again and again run: rfkill list all Is there any change at all in the output? – chili555 Aug 21 '18 at 21:56
  • @chili555 Yes. '0: dell-rbtn: Wireless LAN Soft blocked: no Hard blocked: no 1: hci0: Bluetooth Soft blocked: yes Hard blocked: no 2: phy0: Wireless LAN Soft blocked: yes Hard blocked: no'

    '0: dell-rbtn: Wireless LAN Soft blocked: yes Hard blocked: yes 1: hci0: Bluetooth Soft blocked: no Hard blocked: no 2: phy0: Wireless LAN Soft blocked: no Hard blocked: no'

    – Rodrigo Castelan Carlson Aug 22 '18 at 13:58
  • Is the module dell_rbtn loaded? lsmod | grep dell – chili555 Aug 22 '18 at 14:04
  • @chili555 The solution provided by Seth Bergman worked. Now dell_rbtn is not loaded. Thanks for your help! – Rodrigo Castelan Carlson Aug 22 '18 at 14:12

1 Answers1

0

After examining the output of your wireless script linked in your question, I believe you need to blacklist the dell-rbtn module:

sudo nano /etc/modprobe.d/blacklist.conf

Add the following line:

blacklist dell_rbtn

Also, make sure secure boot is disabled in BIOS.

  • In the list of loaded modules, I don't see dell_rbtn listed at all. – chili555 Aug 22 '18 at 14:04
  • @SethBergman That worked, thanks! The behaviour seems a bit erratic, because deactivation of wi-fi immediately enables airplane mode. But it works! – Rodrigo Castelan Carlson Aug 22 '18 at 14:10
  • @chili555 that is strange, but it worked. I note that secure boot was already disabled in BIOS. – Rodrigo Castelan Carlson Aug 22 '18 at 14:16
  • @Rodrigo Castelan Carlson I'm happy to help. As far as airplane mode goes, you might check out the network manager and make sure it's properly configured. @chill555 maybe the world module is not the correct way to reference it. It's under the rfkill section of the script. This is just a way to keep the hard lock disabled after rebooting. – Seth Bergman Aug 23 '18 at 06:23