kani


{ City } chennai
< Country > india
* Profession * software engineer
User No # 124455
Total Questions Posted # 0
Total Answers Posted # 3

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 0
Users Marked my Answers as Wrong # 0
Questions / { kani }
Questions Answers Category Views Company eMail




Answers / { kani }

Question { HP, 20060 }

How the C program can be compiled?


Answer

Linux/Unix
* Pre-requisite : Before compiling check if gcc package is installed, if not install it either by using apt-get install/yum install based on the Linux kernel.
* Once installed, save the program as hello.c
* Compile it using gcc hello.c which will produce object file a.out
* Finally run it as ./a.out

Is This Answer Correct ?    0 Yes 0 No

Question { 10355 }

what is the very first process created by kernell


Answer

The first process created in Unix at boot time is init whose process id is 1.It is the parent of all the process which runs till the system is shut down. Init process is responsible for starting other background process which is needed for operating system to function properly.For example httpd,tftpd,sshd etc.
Init is basically a daemon process which runs other process as daemons.All the daemon scripts are stored in /etc/init.d or /usr/lib/systemd/system that depends upon the linux distribution.
If a child process gets orphaned, automatically init process adopt it and become the parent process of it.

Is This Answer Correct ?    0 Yes 0 No


Question { 3518 }

What is full form of rhel?


Answer

RHEL stands for Red Hat Enterprise Linux.

Is This Answer Correct ?    0 Yes 0 No