The make_recovery tape is a bootable system recovery tape and it is possible to recover files from the make_recovery tape using the "tar" command.
Do "man make_recovery" in the server for more information.
Depending upon what version, but as far as I remember, make_recovery builds a tape archieve using the tar command.
Therefore, if you use the mt command with the no rewind option for the tape device to step over the boot record you can then access the backup using tar.
Thus to check if you backup worked and to then retreive a file, put the tape in and enter:
mt -f /dev/rmt/0mn fsr 1 #forwards the tape
tar -tvf /dev/rmt/0m # will list all the files to check
Then rewind the tape and start again for your restore:
mt -f /dev/rmt/0mn rew
mt -f /dev/rmt/0mn fsr 1
tar -xvf /dev/rmt/0m [ your files ]
Best of luck
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.