solaris Run level?

Answer Posted / shekh

alt+f9

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is it inbetween or in between?

589


What is the difference between cat command and more command?

601


Write a command that will allow a unix system to shut down in 15 minutes, after which it will perform a reboot.

628


What is ctrl d?

596


What is the command to find maximum memory taking process on the server?

674






Describe the usage and functionality of the command rm –r * in unix?

829


What command is used to switching between users in unix?

566


What do know about tee command and its usage?

591


What will the following command do?

621


What is “chmod” command?

568


Name the general commands in using unix os for a beginner?

625


Explain how to use grep command to list find the records of a file containing 10 different strings?

597


Can you explain a little bit about command substitution?

612


What is difference between grep and find command in unix?

583


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