Ubuntu – HP Pavilion DV4 Ubuntu 18.04 airplane mode enabled WIFI and Bluetooth not working

18.04bluetoothhpnetworkingwireless

I am using Ubuntu 18.04 in my HP Pavilion DV4 laptop. After installing it shows that airplane mode is on by hardware switch

enter image description here

and there is no airplane mode disable switch I found in network

enter image description here

as a result WIFI and Bluetooth not working

enter image description here

enter image description here

When running rfkill list all

enter image description here

Also when I run on widows and press F12 airplane mode is on and off but in Ubuntu it doesn't work

enter image description here

So how can I disable airplane, enable WIFI and Bluetooth

Best Answer

After a long read and research, I discovered the issue is with acpi=off as a kernel boot parameter.

  1. Edit your kernel boot parameter with:

sudo nano /etc/default/grub

  1. Look for the line with GRUB_CMDLINE_LINUX_DEFAULT="quite splash acpi=off" <--parameters may defer based on your system - ->

Within the " " (quotes), replace acpi=off or any other acpi parameters with acpi_osi=!.

e.g.: GRUB_CMDLINE_LINUX_DEFAULT="quite splash acpi_osi=!"

  1. Press Ctrl+O to Save and Confirm Change

Press Ctrl+X to return to terminal

  1. Update grub with :

sudo update-grub

  1. Reboot your machine.

Everything should be working fine. :)

Related Question