Go to the previous, next section.
The kernel provides the basic functionality of the system. You, the user, don't need to know much about it. It defines the following shell commands.
Prints information describing the current state of the system to the shell. Possible flags for the options parameters are:
-irq
-dma
-mods
-mm
-ps
Print the contents of the `cookie jar', when the system is booted this is filled with information about the hardware devices which the system possesses.
Display the current date and time.
Immediately kills the task (or virtual machine) whose ID is the integer pid. If no task with this ID exists or the task may not be killed an error message is printed.
Suspend the task (or virtual machine) whose process-ID is the integer
pid. The task will not be runnable until the thaw
command
is used to reverse the effect of this command.
Allow the task with ID pid to run again. This undoes the effect
of the freeze
command.
This command attempts to open the module called module-name. This ensures that the module is loaded into memory. If the module can be opened successfully it is immediately closed, otherwise an error message is printed.
Try to remove the module called module-name from memory. This only works if the module has no outstanding references to it and it actually allows you to expunge it. If it can't be expunged an error message is printed.
This command suspends the shell for time seconds.
Go to the previous, next section.