frecover on a file

Hello, today arrived to my hands a CD that contains a file that's supposed to have a backup file from some old Unix (HP-UX). The person that gave it to me told me that with the command frecover I should be allowed to open it. I can not find that command on FreeBSD, I wonder if it has another name or we have another command or software that can do the job.
 
If you intend to restore the file on a non-HP system, then fbackup/frecover is not an option and you should use dump(8)() and restore(8)() in that case.

Clarification: these commands are not compatible with each (do not mix them) :)
 
According to HP's fbackup(1M) man page (PDF), fbackup has its own format. From the man page:

general structure of an fbackup volume:
reserved space for ASCII tape label (1024 bytes)
  • fbackup volume header (2048 bytes)
  • session index (size in field of volume header)
  • data
Each file entry in the index contains the file size, the volume number and the pathname of the file.
Hope this helps.
 
Back
Top