Skip to content

Instantly share code, notes, and snippets.

@ctsdownloads
Created January 5, 2023 00:56
Show Gist options
  • Save ctsdownloads/bdf40ef55581393251bcc6781fa6d180 to your computer and use it in GitHub Desktop.
Save ctsdownloads/bdf40ef55581393251bcc6781fa6d180 to your computer and use it in GitHub Desktop.
Ubuntu 22.10 Completing Setup
# 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
reboot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment