6

I would like to see with what parameters the running kernel has been started. i.e., I mean those parameters that are specified with the append option, such as ipv6.disable=1 or rootfstype=ext2

Is there a way to display these options on a running system ?

Martin Vegter
  • 358
  • 75
  • 236
  • 411

1 Answers1

9

Very simple:

cat /proc/cmdline

From man proc:

/proc/cmdline
  Arguments passed to the Linux kernel at boot time.  Often done via a boot
  manager such as lilo(8) or grub(8).
Graeme
  • 34,027