Last active
June 24, 2024 17:06
-
-
Save Brainiarc7/5181484e7189faf78ea6 to your computer and use it in GitHub Desktop.
One line to rebuild all DKMS modules on Ubuntu
This file contains 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
Here goes. | |
ls /usr/src/linux-headers-* -d | sed -e 's/.*linux-headers-//' | \ | |
sort -V | tac | sudo xargs -n1 /usr/lib/dkms/dkms_autoinstaller start | |
Run as root. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Amazing. Definitely saving this for future use (without sort tac and sudo because I don't care about order and sudo when root is kinda pointless)