what is the default signal kill in unix?

Answer Posted / saket kale

kill is a command used to send a signal to a process which
we want to terminate.The message sent is the termination
signal, which requests that the process exit.

The default signal sent is SIGTERM.

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Which command can you use to find the currently running process in unix server?

592


What is the difference between awk and grep?

561


What is the use of tee command?

573


How do you repeat a command in terminal?

597


When i run a programm of orphan process. Instead of getting child's parent (ppid)=1 ..i get 1400 and it varies as per system. How can i findthe right soluion??? My pgm: #include # include int main() { int pid; pid=fork(); if(pid < 0) {exit(-1);} else if(pid==0) { printf("Child Process is Sleeping ..."); sleep(10); printf("Orphan Child's Parent ID : %u ",getppid()); } else { printf("Parent Process Completed ... %u ",getpid()); exit(0); } return 0; } Output:

1766






How do I search a whole word in vim?

694


What's a command word?

591


What will the following command do?

621


What is sed awk grep?

609


What is the command to compare two files in unix?

625


How to find $ai_serual resolved path by using unix

1030


What is the use of the tee command?

602


Differentiate cat command from more command.

582


Name the unix command to find how many days the server has been up.

609


What is updatedb?

590