Linux Concepts for Beginners
The linux kernel is the heart of the operating system. It controls excess to the computer and its files, allocates resources amongst the various activities taking place within the computer, maintains the file system and manages the computer memory.
A system administrator can adjust the system's operating characteristics by configuring the kernel. Configuring the kernel chiefly involes specifying whether certain features of the system could be included.
To view all the programs that are currently running (i.e., executing) on your linux machine, use the command
ps -ef
It supports 2 options: e and f
Signals
Every process that has completed its execution sends an exit status to the console to excess the exit statusof the previously run command use the following line of code.
$?
It it returns a value other than zero then the programme has returned and has been stopped by an error.
Comments
Post a Comment