what is the difference between npar and vpar in HP-UX?
Answer / dave_chamoli82
An npar is a physical separation of a single computer into
multiple partitions, each having separate hardware
components: cell boards, I/O, etc.
A vpar is a virtual separation of either a single computer
or an npar into multiple virtual partitions, done with
software.
| Is This Answer Correct ? | 27 Yes | 4 No |
Is there any command in Unix, other than:ls, to list the files in a directory? The answer will be highly appreciated...
How to find $ai_serual resolved path by using unix
how to sort the content of the file based on numeric values
How do you copy a directory with many files and folders into another directory?
What is clustering in HP and how it's work?
what is the advaantage of each user having its own copy of the shell?
how to unzip the contents of the gzip file
What does 'mkdir' command do in UNIX?
How does the system know where one command ends and another begins?
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:
How do I run a bash script?
How do I use grep to search for a file?