Skip to content

Instantly share code, notes, and snippets.

@LDMFD
Last active April 29, 2021 23:25
Show Gist options
  • Save LDMFD/03b6e37c8907e277dafc6c6183a732d5 to your computer and use it in GitHub Desktop.
Save LDMFD/03b6e37c8907e277dafc6c6183a732d5 to your computer and use it in GitHub Desktop.
Razer Blade 15 (2021) FHD setup notes
# Upgrade Ubuntu:
sudo apt-get dist-upgrade
# Install Razer LED stuff
sudo add-apt-repository ppa:openrazer/stable
sudo apt update
sudo apt install -y openrazer-meta
# Disable splash
sudo vim /etc/default/grub
Edit:
#GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX_DEFAULT=""
Then:
sudo update-grub
# Disable bluetooth (doesn't work) - append to /etc/modprobe.d/blacklist.conf:
blacklist btusb
blacklist btrtl
blacklist btbcm
blacklist btintel
blacklist bluetooth
# Custom kernel for Wifi:
sudo add-apt-repository ppa:cappelikan/ppa
sudo apt update
sudo apt install -y mainline
Run Mainline using search.
Use 5.10 or as directed by the following Wifi intel driver page.
# Wifi:
Intel wifi:
- Intel® Wi-Fi 6 AX210 160MHz
Drivers: https://www.intel.com/content/www/us/en/support/articles/000005511/wireless.html
sudo cp iwlwifi-ty-a0-gf-a0-59.ucode /lib/firmware/
# Graphcs:
https://www.nvidia.com/en-us/drivers/unix/
Software Updates -> Additional Drivers -> choose nvidia-driver-460
# Fix resume - disable lid switch
sudo vim /etc/systemd/logind.conf
HandleLidSwitch=ignore
HandleLidSwitchExternalPower=ignore
or use gnome-tweaks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment