Linux sysctl options of Linux kernel list and explanation

Does anyone know where I can find a list of parameters sysctl

for the Linux kernel and an explanation for it?

I searched for it and found nothing. I also looked into kernel headers with the same result.

+3


source to share


2 answers


The kernel has documentation:



+4


source


You can get a complete list by simply running:

$ sysctl -a

      



What individual options mean depends on your exact kernel version, but you can find an explanation for any of the interesting ones with google or @myaut links.

+1


source







All Articles