Why is shebang used?
No Answer is Posted For this Question
Be the First to Post Answer
If JFS file system is 100% full how we can increase the file system ?
fork in unix ?
What Command is used to make a directory?
Explain the terms ‘system calls’ and ‘library functions’ with respect to unix commands?
How do you change file permissions?
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<stdlib.h> # include <stdio.h> 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:
The rm command removes links to file. What does this mean? How then is a file deleted from the file system?
Which command can you use to find the currently running process in unix server?
What is grep command in unix with examples?
How to know a process is a zombie or orphan process?
Explain ‘library functions’ with respect to unix commands?
which script will invoke first ,when /etc/init.d starts