kernel
The kernel is the core of the operating system — the one piece of software that talks directly to the hardware and decides who gets to use it. Every program that wants to read a file, send over the network, or use a slice of memory has to ask the kernel first.
Its biggest job is sharing. There's only one CPU (well, a few cores) and a limited pile of memory, but dozens of programs all want them at once. The kernel hands out tiny turns so fast that everything seems to run at the same time, and keeps each program walled off so a crash in one doesn't take down the rest.
You never run the kernel directly — it sits underneath everything, invisible. Your shell, your browser, your editor all make their requests to it. When people say 'Linux', strictly speaking they mean the kernel; everything else is the software gathered around that quiet, central piece.
$ uname -r 6.8.0-generic
Print the version of the kernel your machine is running right now.
'Kernel' literally means the seed inside a nut's shell — and the shell really does wrap around it. The naming is no accident.