The command "ps" is used to list the processes running in the system and by adding various options to it we can get different info...Read more »

The Magician Of Linux
The command "ps" is used to list the processes running in the system and by adding various options to it we can get different info...Read more »
In the post "Using nice" we saw how we can assign a custom nice number to a process while launching it. If we want to change the...Read more »
Linux maintains the priority of normal processes using a number called as the nice number. The number ranges from -20 to +19 and smaller t...Read more »
The function fork() is used to create a new process in linux. The process which calls the fork is called as the parent and the process that...Read more »