- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: BACKUP RECOVERY
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2000 10:38 AM
06-13-2000 10:38 AM
BACKUP RECOVERY
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2000 10:49 AM
06-13-2000 10:49 AM
Re: BACKUP RECOVERY
tar - tar xvf devicefile filename
fbackup - frecover
dump - restore
OmniBack - OmniBack
For more help:
man tar
man frecover
man restore
Brian
<*(((>< er
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2000 11:17 AM
06-13-2000 11:17 AM
Re: BACKUP RECOVERY
All of this assumes that you are backing up standard HP-UX files. If you backed up a database then the database typically has its own backup routine (ie: not tar, cpio, fbackup etc.). In this case you must use the database tools for a backup or a restore.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2000 03:55 AM
06-14-2000 03:55 AM
Re: BACKUP RECOVERY
Some backups use a compress. If when you get your file off of tape
a .Z or .gz extension indicates a compressed file
#man uncompress
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2000 04:59 AM
06-14-2000 04:59 AM
Re: BACKUP RECOVERY
useful for future use :
write the backup command used on the tape.
service oriented: add the presumed recovery
command.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2000 06:53 AM
06-15-2000 06:53 AM
Re: BACKUP RECOVERY
best way to do it:
mt -t /dev/rmt/0mn rew
dd if=/dev/rmt/0mn of=/tmp/P1 bs=10k count=1
dd if=/dev/rmt/0mn of=/tmp/P2 bs=10k count=1
.
.
.
.
dd if=/dev/rmt/0mn of=/tmp/Pn bs=10k count=1
file P1
file P2
...
file Pn
In other words :
read tape on raw mode,and just little blocks
file tells you what type of command had created that block.
Then rewind tape and apply the correct command to extract. Please, frist test using verbose and non extracting options:
tar tvf <-> tar xvf
cpio -itv <-> cpio -iv
Regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2000 07:23 AM
06-15-2000 07:23 AM
Re: BACKUP RECOVERY
This knowledge will prove invaluble at some point in time. Remember, it is not a question of "if I have to restore", it is a question of "when I have to restore". There is no "if"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2000 12:42 PM
06-26-2000 12:42 PM
Re: BACKUP RECOVERY
and the file is not a Database
try this
cd /
cpio -Budvicm "filepath/name" < /dev/rmt/drive
best way to get the format for the filepath is to do a
cpio -itv < /dev/rmt/drive
and break as soon as you see the format
depending on the backup
you may or may not start the path with a /
and starting at root ( / ) should put the file where it is supose to go