Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eclecticc/8010f40df80a97b8e1ede593bc3b1c99 to your computer and use it in GitHub Desktop.
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)
# 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
@stuartsoft
Copy link

Is this gist in public domain? What license should I reference if I were to fork it?

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