Skip to content

Instantly share code, notes, and snippets.

@ctsdownloads
ctsdownloads / Wi-Fi Troubleshooting Ubuntu 22.10
Last active January 5, 2023 00:41
Wi-Fi Troubleshooting Ubuntu 22.10
# If your wireless connection is dropping off, we recommend turning off powersave mode.
# It's a known issue with some kernels, so this will resolve the issue if you experience this.
gnome-text-editor admin:///etc/NetworkManager/conf.d/default-wifi-powersave-on.conf
# change 3 into 2 as to disable this feature.
[connection]
wifi.powersave = 2
@ctsdownloads
ctsdownloads / Mic jack, kernel and Wi-Fi Troubleshooting Ubuntu 20.04
Last active January 4, 2023 21:49
Mic jack, kernel and Wi-Fi Troubleshooting Ubuntu 20.04Ubuntu 20.04
# How to get the microphone input on the 3.5mm jack working.
sudo gedit /etc/modprobe.d/alsa-base.conf
# add
options snd-hda-intel model=dell-headset-multi
# to the end of it, and then reboot.
@ctsdownloads
ctsdownloads / Wi-Fi Troubleshooting Ubuntu 22.04
Last active January 5, 2023 00:23
Wi-Fi Troubleshooting Ubuntu 22.04
# If your wireless connection is dropping off, we recommend turning off powersave mode.
# It's a known issue with some kernels, so this will resolve the issue if you experience this.
sudo gedit /etc/NetworkManager/conf.d/default-wifi-powersave-on.conf
# change 3 into 2 as to disable this feature.
[connection]
wifi.powersave = 2
@ctsdownloads
ctsdownloads / Ubuntu 22.10 Additional steps
Last active January 5, 2023 00:53
Ubuntu 22.10 Additional steps
# If you want to enable fractional scaling:
gsettings set org.gnome.mutter experimental-features "['scale-monitor-framebuffer']"
# Fixing the brightness up/down behavior
# Opening the grub config file
gnome-text-editor admin:///etc/default/grub &
# The line to edit in the grub config
@ctsdownloads
ctsdownloads / Ubuntu 22.04 LTS Additional steps
Last active January 11, 2023 05:57
Ubuntu 22.04 LTS Additional steps
# 22.04.1 and newer have recent enough kernels that 12th Gen Intel Core support is solid. If you want to move to a more recent kernel though, you can optionally update to the OEM kernel package.
sudo apt install linux-oem-22.04
# If you want to enable fractional scaling:
gsettings set org.gnome.mutter experimental-features "['scale-monitor-framebuffer']"
# Fixing the brightness up/down behavior
# Opening the grub config file
@ctsdownloads
ctsdownloads / brightness-ubuntu-22-10
Created December 13, 2022 22:16
brightness-ubuntu-22-10.txt
# 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