Created
August 4, 2020 05:07
-
-
Save joonvena/d5b0bad1ede27213fd1c45c9f76bafc5 to your computer and use it in GitHub Desktop.
Fix for MSI GS65 going to airplane mode after suspend (Unix)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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