(08-Nov-2021, 01:17 PM)bigmo Wrote: 2. Building my own kernel? Should I disclose that I was a software developer in a previous life? I am willing to give that a try. If you have any docs on the forums, that would be of great assistance as my Linux is a bit rusty.It's actually not that difficult, just time consuming to experiment with various kernels to get that magic one. Steps roughly are
Download kernel source:
- Download RT patch
- Extract everything on your Snakeoil computer (this is easiest, but can be offloaded to another faster computer in the future)
- Apply RT patch
- Install all the tools necessary to build a kernel (google for list)
- run "make oldmenuconfig"
- run "make config" and enable/disable things you like
- run "make modules && make bzImage"
- run "sudo make modules_install" to install modules
- copy bzImage as /boot/vmlinuz-give-this-a-name
- update /etc/default/grub to use the new kernel
- run "sudo update-grub"
- Reboot and pray.
Edit: Also refer to the Linky link referred in the Wiki.