Last active
September 12, 2022 22:53
-
-
Save eclecticc/8010f40df80a97b8e1ede593bc3b1c99 to your computer and use it in GitHub Desktop.
Ubuntu 22.04 LTS Installation on the Framework Laptop (12th Gen Intel Core)
This file contains hidden or 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
# Switching to a more recent OEM kernel | |
sudo apt-get install linux-oem-22.04 | |
# Fixing the brightness up/down behavior | |
# Opening the grub config file | |
gedit admin:///etc/default/grub & | |
# The line to edit in the grub config | |
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash module_blacklist=hid_sensor_hub" | |
# or if you also need the SSD power saving workaround | |
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nvme.noacpi=1 module_blacklist=hid_sensor_hub" | |
# and then run: | |
sudo update-grub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is this gist in public domain? What license should I reference if I were to fork it?