Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save eclecticc/096235e8e2d2d92f780d49c317522ffc to your computer and use it in GitHub Desktop.
Save eclecticc/096235e8e2d2d92f780d49c317522ffc to your computer and use it in GitHub Desktop.
Ubuntu 22.04 LTS Installation on the Framework Laptop steps
# Make sure to update your packages to get the latest kernel
sudo apt update && sudo apt upgrade -y
# To enable headset mic input, edit /etc/modprobe.d/alsa-base.conf
echo "options snd-hda-intel model=dell-headset-multi" | sudo tee -a /etc/modprobe.d/alsa-base.conf
# On some SSDs (e.g. SN750 with older firmware), there is a workaround to improve suspend battery life
sudo sed -i 's/^GRUB_CMDLINE_LINUX_DEFAULT.*/GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nvme.noacpi=1"/g' /etc/default/grub
# Then refresh the GRUB configuration
sudo update-grub
# And reboot
sudo reboot
@stuartsoft
Copy link

cool. ty. Same for your other gists? Also public domain?

@eclecticc
Copy link
Author

Yes, unless otherwise specified in the gist, our gists are public domain.

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