What Happens when you execute a command?
Answers were Sorted based on User's Feedback
Answer / amit
When command is given then unix os will fork the shell i.e
will creat a new process and will execute the command using
exec command...something like suppose you gave command "ls"
in the shell then...
fork();
exec(ls);
It will give you the result and after this the child process
will die.
| Is This Answer Correct ? | 17 Yes | 2 No |
Answer / basha
Hi
command execute process used by shell
it will check
1.physical memory
a)alias
b)functions
2.HDD
c)builtin commands
d)path
e)execute permission
f)system calls FORK_EXEC_EXIT
it it founds then it will execute and give the info other
wise it shows shell name and not founs.
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / kumar
os calls exec() function to execute the command and
displays the output
| Is This Answer Correct ? | 0 Yes | 1 No |
what is the very first process created by kernell
What is the condition required for dead lock in unix system?
What is ln(linking)?
What is ipc in unix?
what is the process id for kernell process
How to know whether the message queue is empty or not.
what is the condition required for dead lock in unix sustem ?
write About fork()?
Explain the initial process sequence while the system boots up?
What is ipc port?
How to write the program on full-duplex communication on bidirectional(e.g using two pipes)?
How do you execute one program from within another?