Linux Lite Forums
Kernel tweaking graphic tool - Printable Version

+- Linux Lite Forums (https://www.linuxliteos.com/forums)
+-- Forum: Software - Support (https://www.linuxliteos.com/forums/forumdisplay.php?fid=5)
+--- Forum: Other (https://www.linuxliteos.com/forums/forumdisplay.php?fid=20)
+--- Thread: Kernel tweaking graphic tool (/showthread.php?tid=7223)



Kernel tweaking graphic tool - Şerban S. - 07-22-2020

Hi! Smile

Does anyone know if there is a graphic tool that allows to rebuild a kernel without certain modules, such as useless drivers and the like?
My skills in compling/recompiling are close to none. This might help me remove useless drivers (Radeon, for one, even NVidia, on the other machines).

Best regards! Smile


Re: Kernel tweaking graphic tool - Moltke - 07-22-2020

(07-22-2020, 07:07 AM)Şerban S. link Wrote: Hi! Smile

Does anyone know if there is a graphic tool that allows to rebuild a kernel without certain modules, such as useless drivers and the like?
My skills in compling/recompiling are close to none. This might help me remove useless drivers (Radeon, for one, even NVidia, on the other machines).

Best regards! Smile

You might want to check
Code:
make menuconfig
and it's probably wise to try first in a VM. However,  this tool won't tweak your current kernel, you may try with modprobe https://linux.die.net/man/8/modprobe to enable/disable modules you don't need/use, althought and AFAIK they'll be loaded/unloaded again after a reboot so you'll have to repeat the process each time. Menuconfig helps in the kernel's building process by providing a GUI to set some parameters. Again, you might want to try this in a VM first and you need to become yourself familiar with kernel parameters. Try reading here

http://www.yolinux.com/TUTORIALS/LinuxTutorialOptimization.html#KERNELENHANCEMENT

https://www.maketecheasier.com/build-custom-kernel-ubuntu/

https://wiki.gentoo.org/wiki/Kernel/Configuration/en

https://www.kernel.org/doc/Documentation/

Hope this helps! Smile