1830885 Members
1829 Online
110017 Solutions
New Discussion

fbackup error

 
tayal_sumit
Occasional Advisor

fbackup error

Hi All,

I am trying to backup a filesystem through fbackup command.But it is giving below error to me

Iportal#fbackup -0f /dev/rmt/2mn -i /opt_new
fbackup(1004): session begins on Mon Jun 9 11:25:19 2008
fbackup(3038): output file /dev/rmt/2mn is not a valid device file for backup
fbackup(3019): would you like to enter a new output file?
n
fbackup(3022): would you like to continue this session?
y
fbackup(3023): please ensure that volume 1 is ready on /dev/rmt/2mn
fbackup(3038): output file /dev/rmt/2mn is not a valid device file for backup
fbackup(3019): would you like to enter a new output file?
n
fbackup(3022): would you like to continue this session?
n
fbackup(3004): writer aborting
fbackup(1002): Backup did not complete : Reader or Writer process exit


please suggest some solution for it
regards,
3 REPLIES 3
Dennis Handly
Acclaimed Contributor

Re: fbackup error

fbackup(1m) warnings says:
fbackup should not be used with no-rewind devices


Asif Sharif
Honored Contributor

Re: fbackup error

Hi sumit,

Are you using HP-UX 11.11? If yes then check that this patch is installed?

#swlist -l product|grep -i PHKL_34552

if not then install this patch. It requires reboot.

Regards,
Asif Sharif
Regards,
Asif Sharif
Mustafa Gulercan
Respected Contributor

Re: fbackup error

hi;
here is the solution; http://www.webservertalk.com/message392429.html
baseline, as the following;

The problem is that fbackup/frecover tries to read first only a few bytes (1
-10)
depending on the OS and fbackup/frecover version but the DLT's won't allow
this. With the 'remote device' fbackup/frecover doesn't try this directly.

In short, this doesn't work:

fbackup -f /dev/rmt/0m ...
frecover -x -f /dev/rmt/0m ...

but this works:

fbackup -f `hostname`:/dev/rmt/0m ...
frecover -x -f `hostname`:/dev/rmt/0m ...

-To use this trick you must be allowed to run a 'remsh' on your own host

regards,
mustafa