mayfrost-guides

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit a74f90920402d344889b5d4231065d69e6e19eaf
parent 9e0facce5bd950aff9ff0775fe2c8bb3a67eaadf
Author: mayfrost <mayfrost@cock.li>
Date:   Thu,  8 Nov 2018 12:32:16 -0300

Update KERNEL.md
Diffstat:
MKERNEL.md | 14+++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/KERNEL.md b/KERNEL.md @@ -34,14 +34,22 @@ Compiling a kernel has the advantage to make it as minimal and featureful as you ## PREPARATIONS * To see which version the new kernel source is. `head /usr/src/linux/Makefile` -* To see which version the current kernel is. +* To see which version the kernel you are currently using is. `uname -r` -* List hardware and kernel modules in use (take note to know what kernel modules are appropriate). +* Short list of your hardware. `lspci -k` +* List your hardware with kernel modules used for each. +`lspci -k` +* List all kernel modules currenly used. +`lsmod` +* Long list of your hardware with all details. `lspci -v` +* See information on your CPU. `cat /proc/cpuinfo` +* See information on your memory (not really necessary). `cat /proc/meminfo` -`lsmod` + +Take note what kernel modules are appropriate. ## GETTING THE KERNEL SOURCE