Linux Tipps und Tricks

From Lolly's Wiki
Revision as of 15:07, 22 January 2016 by Lollypop (talk | contribs) (Die Seite wurde neu angelegt: „==Hard reboot== This is the hard way to kick your kernel into void. No filesystem sync is done, just an ugly fast direkt reboot! <source lang=bash> # echo 1 > …“)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Hard reboot

This is the hard way to kick your kernel into void. No filesystem sync is done, just an ugly fast direkt reboot!

# echo 1 > /proc/sys/kernel/sysrq
# echo b > /proc/sysrq-trigger

First line enables sysrq, second line sends the reboot request.

For more look at kernel.org!