Operating System - HP-UX
1748183 Members
3728 Online
108759 Solutions
New Discussion

Re: fbackup file system to file system

 
SOLVED
Go to solution
Timothy P. Jackson
Valued Contributor

fbackup file system to file system

Hello Everyone

 

 I am trying to do a fbackup from of one entire file system to another file system. I have done it before but I cannot remember the syntax. Does anyone know the correct syntax to copy an entire file system to another file system using fbackup? I do not want to use cp -r.

 

System:  rp4440

OS:  HP-UX 11.11

 

Any help would be greatly appreciated!

 

Thanks

Tim

2 REPLIES 2
Steven Schweda
Honored Contributor
Solution

Re: fbackup file system to file system

 
Timothy P. Jackson
Valued Contributor

Re: fbackup file system to file system

Thanks Steven!

 

Here is what i came up with....

 

cd /source_filesystem

fbackup -0 -i . -f - | ( cd /dest_dir ; frecover -Xrf - )

 

 

Thanks for all your help!