with Tags:
ulimit
X

An overview of Linux processes
A Process is one of the most important fundamental concepts of the Linux operating system. This article focuses on the basics of Linux processes.
Process A process is an instance of a program running in Linux. This is the basic definition that you might have heard before. Though its simple enough to understand but still lets elaborate a bit for the beginners.
Lets quickly create a hello world program in C language :
#include<stdio.h>
int main(void)
{
printf("\n Hello World\n");
// Simulate a wait... [More]
Tags:  zombie stack pid process daemon setrlimit gid orphan data limit init ulimit environment heap resource uid overview segment getrlimit basics text |