how to make IGNITE-BACKUP in HP-UX?
Answers were Sorted based on User's Feedback
Answer / dave_chamoli82
First check tape is insert or not
# ioscan -fnC tape
To check the tape status
# mt -f /dev/rmt/0mn status
Make tape recovery
# make_tape_recovery -AvI -x inc_entire=vg00 -v
-a dev/rmt/0mn
| Is This Answer Correct ? | 19 Yes | 0 No |
Answer / ramesh kumar
First check tape is insert or not
# ioscan -fnC tape
To check the tape status
# mt -f /dev/rmt/0mn status
Make tape recovery
# make_tape_recovery -AvI -x inc_entire=vg00 -v
-a dev/rmt/0mn
Make sure to mention correct mn number
| Is This Answer Correct ? | 0 Yes | 0 No |
What is updatedb?
How do you move or rename a file or directory?
Why is awk called awk?
what will be the output of ls ~/..
what is kernel?
Give two UNIX kernel parameters that effect an Oracle install
how will you convert a general file to a hidden file?
What is the output of : $ ps-e $ ps-a commands
why metadb requires a seperate slice to create Solaris volume manager
how unix kernel distinguishes between a normal file and device file ?
7 Answers Google, IBM, McAfee, Vodafone,
Explain command to show the space allocation of files?
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: