Last active
April 29, 2021 23:25
-
-
Save LDMFD/03b6e37c8907e277dafc6c6183a732d5 to your computer and use it in GitHub Desktop.
Razer Blade 15 (2021) FHD setup notes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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