1837296 Members
3138 Online
110115 Solutions
New Discussion

A problem about frecover

 
SOLVED
Go to solution
Kevin.Wang
Frequent Advisor

A problem about frecover

I backup /u02 as follows,
#fbackup -f /dev/rmt/0m -0vi /u02

after it completed, i want to recovery it in another directory /u02bak, how should I do?

Thank you in advance. by the way, where can I see the fbackup logs?
4 REPLIES 4
Kevin.Wang
Frequent Advisor

Re: A problem about frecover

Who can help me?
high points!
Sanjay Kumar Suri
Honored Contributor
Solution

Re: A problem about frecover

-F option of frecover can help in restoring data in a new directory. -F recovers files, but not directories.

-V option of fbackup can help in logging volume header information after a successful backup.

Check man pages.

sks
A rigid mind is very sure, but often wrong. A flexible mind is generally unsure, but often right.
Thierry Poels_1
Honored Contributor

Re: A problem about frecover

hi,

- cd /tmp
- link -s /u02bak /tmp/u02
- frecover -xX -f /dev/rmt/0m

"-X" = recover in current directory
create a symbolic link for the original directory in your working directory, and restore with "-X", that's all

regards,
Thierry.
All unix flavours are exactly the same . . . . . . . . . . for end users anyway.
Suresh Patoria
Super Advisor

Re: A problem about frecover

Hi,

see the following syntax
it may help

#cd /u02bak

#frecover -xvf /dev/rmt/0m -I u02/

Thnax