8

Does anyone know where I can find a parameters list of sysctl for the linux kernel and its explanation?

I've searched for it and have found nothing. I looked in the kernel headers too with the same result.

TLS
  • 3,585
  • 1
  • 19
  • 20
Emilio Granados
  • 101
  • 1
  • 1
  • 5

2 Answers2

8

Kernel have documentation:

myaut
  • 11,174
  • 2
  • 30
  • 62
7

You can get the full list just by running:

$ sysctl -a

What the individual parameters means depends on your exact kernel version, but you can likely find an explanation for any of the interesting ones using Google or @myaut's links.

Adrian Petrescu
  • 16,629
  • 6
  • 56
  • 82