Interactive map of Linux kernel (makelinux.github.io)
from learnbyexample@programming.dev to linux@lemmy.ml on 26 Mar 12:53
https://programming.dev/post/27553997

#linux

threaded - newest

funkajunk@lemm.ee on 26 Mar 15:49 next collapse

Me: smiling and nodding

Also me: I have no fucking clue what I am looking at

tourist@lemmy.world on 26 Mar 16:03 collapse

I stole this from the other thread

A kernel, in computing terms, is the computer program that sits between applications and the hardware, facilitating their interactions.

This is the GNU/Linux operating system’s kernel (the part that is technically Linux) showing its architecture.

The columns represent the areas of functionality the kernel offers, the rows (from top to bottom) representing the level of abstraction from the hardware.

From the top; user space, where users barely have to think about the hardware enabling their applications. To the bottom; the hardware itself and the interfaces that enable the kernel to talk to them.

The lines represent the relationships between the various Linux kernel functions and structures - the text - that interact with one another directly.

The diagram is interactive in the sense that you can click the functions/structures and be taken to relevant resources to help a Linux kernel developer navigate the humongous amount of code that comprises the kernel, to accelerate debugging etc.

This diagram has been continuously developed for well over 15 years at this point and is somewhat iconic in the Linux world as it makes tangible the kernel and its thousands upon thousands of lines of code which I doubt any one developer has or could read and comprehend as a whole without the use of tools like this map.

(thank you honourable fartsparkles, blesser of knowledge)

funkajunk@lemm.ee on 26 Mar 16:43 collapse

Praise be to fartsparkles, blessed be his name.

0x0@programming.dev on 26 Mar 19:13 next collapse

Reminds me of the 56K handshake.

lascapi@jlai.lu on 27 Mar 09:51 next collapse

Wow! Impressive!

someacnt@sh.itjust.works on 27 Mar 14:00 collapse

Ah, this explains why linux kernel grew to be quite large. Thanks!