Skip to content

Instantly share code, notes, and snippets.

@joonvena
Created August 4, 2020 05:07
Show Gist options
  • Save joonvena/d5b0bad1ede27213fd1c45c9f76bafc5 to your computer and use it in GitHub Desktop.
Save joonvena/d5b0bad1ede27213fd1c45c9f76bafc5 to your computer and use it in GitHub Desktop.
Fix for MSI GS65 going to airplane mode after suspend (Unix)
sudo nano /etc/default/grub
# Add these inside GRUB_CMDLINE_LINUX_DEFAULT:
acpi_osi=! acpi_osi='Windows 2009' quiet splash
# Run this command and reboot:
sudo update-grub
Now when you come back from suspend you can use hardware keys to remove the airplane mode (Fn + f10).
@c0n5um3r
Copy link

On Fedora (Nobara) Linux:

sudo -e /etc/default/grub

#Make sure that the line looks like this:
GRUB_CMDLINE_LINUX_DEFAULT="acpi_osi=! acpi_osi='Windows 2009' quiet splash"

#Reconfigure grub:
sudo grub2-mkconfig -o /boot/grub2/grub.cfg
sudo reboot

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment