Skip to content

Latest commit

 

History

History
55 lines (33 loc) · 2.3 KB

Ubuntu24.04LTS-Setup-12thGen.md

File metadata and controls

55 lines (33 loc) · 2.3 KB

This is for 12th Gen Intel® Core™ Framework Laptop 13 ONLY.

This will:

  • Update your Ubuntu install's packages.
  • Provide a workaround for dropped Intel AX210 wifi.
  • We are NOT recommending an OEM kernel at this time, this may change in the future. Default kernel is where you need to be.

       

Step 1 Get everything updated

  • Browse to the upper left corner, click the horizontal line to open the menu.
  • Type out the word terminal, click to open it.
  • Click on the small icon shown in the image below to copy the code below in the gray box, right click/paste it into the terminal window.
  • Then press the enter key, user password, enter key, reboot.
sudo apt update && sudo apt upgrade -y && sudo snap refresh

TIP: You can use the little clipboard icon to the right of the code to copy to your clipboard.

Copy The Code Below Like This

     

Step 2 Disable power save for Intel Wi-Fi (note, there appears to be a regression where Wi-Fi drops off on AX210 cards, this will serve as a workaround)

  • Browse to the upper left corner, click the horizontal line to open the menu.
  • Type out the word terminal, click to open it.
  • Click on the small icon shown in the image below to copy the code below in the gray box, right click/paste it into the terminal window.
sudo apt install iw && interface=$(nmcli -t -f active,device d wifi list | grep '^yes' | cut -d':' -f2) && echo -e "\n\033[1;33mInterface:\033[0m $interface" && iw dev $interface get power_save

This will indicate if your Wi-Fi power save is on or off. If it's on and you're seeing drops, continue to the next line.

sudo sed -i '/^wifi.powersave = 3$/s/3/2/' /etc/NetworkManager/conf.d/default-wifi-powersave-on.conf

This will change 3 into 2, which will disable powersave.

TIP: You can use the little clipboard icon to the right of the code to copy to your clipboard.

Copy The Code Below Like This

reboot.