linux.rst
author Oleksandr Gavenko <gavenkoa@gmail.com>
Sun, 07 Mar 2010 22:15:35 +0200
changeset 334 88d85b45d17c
child 335 46777be3b34b
permissions -rw-r--r--
SysRq.

-*- mode: outline; coding: utf-8 -*-

* SysRq.

  x86: ALT-SysRq-<command key>
  SPARC: ALT-STOP-<command key>
  PPC: ALT - Print Screen (or F13) - <command key>

  'b' - reboot
  'p' - dump the current registers and flags to your console
  'r' - take control of keyboard back from X
  'e' - send SIGTERM to all processes, except for init
  'i' - send SIGKILL to all processes, except for init
  's' - attempt to sync all mounted filesystems
  'u' - remount all filesystems read-only

  $ echo 0 > /proc/sys/kernel/sysrq  # disable
  $ echo 1 > /proc/sys/kernel/sysrq  # enable

  http://www.kernel.org/doc/Documentation/sysrq.txt
                Linux Magic System Request Key Hacks