Operating System - HP-UX
1748015 Members
4960 Online
108757 Solutions
New Discussion

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!