Lines Matching refs:you

6 It is a 'magical' key combo you can hit which the kernel will respond to
46 handle so many keys being pressed at the same time, so you might
59 On other - If you know of the key combos for other architectures, please
136 sak(k) (Secure Access Key) is useful when you want to be sure there is no
138 when you would try to login. It will kill all programs on given console,
139 thus letting you make sure that the login prompt you see is actually
145 useful when you want to exit a program that will not let you switch consoles.
148 reboot(b) is good when you're unable to shut down. But you should also
154 sync(s) is great when your system is locked up, it allows you to sync your
156 that the sync hasn't taken place until you see the "OK" and "Done" appear
157 on the screen. (If the kernel is really in strife, you may not ever get the
162 Again, the unmount (remount read-only) hasn't taken place until you see the
166 kernel messages you do not want to see. Selecting '0' will prevent all but
170 term(e) and kill(i) are useful if you have some sort of runaway process you
191 probably best to put this command in a boot script. Oh, and by the way, you
196 In order to register a basic function with the table, you must first include
197 the header 'include/linux/sysrq.h', this will define everything else you need.
198 Next, you must create a sysrq_key_op struct, and populate it with A) the key
199 handler function you will use, B) a help_msg string, that will print when SysRQ
203 After the sysrq_key_op is created, you can call the kernel function
206 if that slot in the table is blank. At module unload time, you must call
210 overwritten since you registered it.
222 If for some reason you feel the need to call the handle_sysrq function from
223 within a function called by handle_sysrq, you must be aware that you are in
224 a lock (you are also in an interrupt handler, which means don't sleep!), so
225 you must call __handle_sysrq_nolock instead.
237 Should you require the output on the console channel then you will need
243 command you are interested in.