Is there a way to find out with what parameters did the kernel boot?

For example if I specify noexec=off at the grub command line? Can I see this sort of info after the system has finished booting?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

The string of boot parameters the kernel was booted with is stored in the /proc/cmdline file. (/proc is a virtual filesystem that contains information about the running system and processes. There is a lot of useful information in there!)

To display it on a terminal, just run:

cat /proc/cmdline
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.