Last active
October 3, 2017 10:31
-
-
Save h4n2k/78e6253f69c87cde933e08b65d79f3f1 to your computer and use it in GitHub Desktop.
How to switch to Long Term Support (LTS) kernel - Arch Linux
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
| - install lts kernel | |
| sudo pacman -S linux-lts | |
| -or- | |
| sudo pacman -S linux-lts linux-lts-headers | |
| - (optional) check if kernel, ramdisk and fallback are available | |
| ls -lsha /boot | |
| - (optional) remove the standard kernel | |
| you can skip this step and have both kernels installed at once. | |
| For me, lts was selected by default after rebooting, | |
| but I could also go into grub's advanced options and select the standard kernel instead. | |
| pacman -R linux | |
| - update the grub config | |
| grub-mkconfig -o /boot/grub/grub.cfg | |
| reboot | |
| Note: | |
| may need to replace any kernel modules with their lts equivalent as well. | |
| e.g. if acpi_call was previously installed, it's probably best to also install acpi_call-lts, otherwise the module won't load. |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
http://www.yourtypicalguide.com/for-tech/tips-and-tricks/arch-linux-how-to-switch-to-long-term-support-lts-kernel/