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
11-17-2000 11:55 AM
11-17-2000 11:55 AM
fbackup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2000 12:08 PM
11-17-2000 12:08 PM
Re: fbackup
dd if=/dev/rmt/0m of=/dev/rmt/1m
where 0m would be the source drive and 1m would be the destination drive.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2000 12:10 PM
11-17-2000 12:10 PM
Re: fbackup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2000 12:42 PM
11-17-2000 12:42 PM
Re: fbackup
DISCLAIMER - I am a bit rusty with my fbackup stuff, but just an idea - how about this... use frecover from the source and pipe it to fbackup on the second tape.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2000 04:38 PM
11-17-2000 04:38 PM
Re: fbackup
Duplicating a fbackup-Tape is not so easy, as tape-format depends on fbackup-Options (records, blocksperrecords, etc.).
The 1.st Record (I think) is always a 512 Bytes Header, then the Index-File, than follow a lot of EOF-separated Files.
I used "tcopy" (Public Domain) for copying fbackup-tapes about 6-7 years ago, I think it should work with the new fbackup-version tapes also.
Hope it helps,
schneck c/o Christian Aichmair
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2000 01:13 PM
11-20-2000 01:13 PM
Re: fbackup
http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0x01eea14d9abcd4118fef0090279cd0f9,00.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2000 01:15 PM
11-20-2000 01:15 PM
Re: fbackup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2000 08:54 PM
11-21-2000 08:54 PM
Re: fbackup
there are people who have succeeded however using combinations of different block sizes and the dd command.
I would not trust any fbackup tape that was copied as a viable DRP as I have seen it work and using the same commands it has failed the next time.
good luck
JOn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2000 09:11 PM
11-21-2000 09:11 PM
Re: fbackup
The dd(1) command can be used to duplicate backup tapes created by most
standard HP-UX backup utilities.
Note: The examples shown here assume default command operation - if
variations are made when creating the backups (especially in the area of block
size, etc.), then these examples may need to be altered to work properly.
Duplicating tar(1) tapes
Copy contents of tar(1) tape to disk:
# dd if=/dev/rmt/ of=/tmp/tar.contents bs=10k
Copy disk file to new tape:
# dd if=/tmp/tar.contents of=/dev/rmt/ bs=10k
Verify new tape is readable by tar(1):
# tar -tvf /dev/rmt/
Duplicating cpio(1) tapes
Copy contents of cpio(1) tape to disk:
# dd if=/dev/rmt/ of=/tmp/cpio.contents bs=5k
Copy disk file to new tape:
# dd if=/tmp/cpio.contents of=/dev/rmt/ bs=5k
Verify new tape is readable by cpio(1):
# cpio -icvBt < /dev/rmt
Duplicating dump(1)/vxdump(1) tapes
Copy contents of dump(1)/vxdump(1) tape to disk:
# dd if=/dev/rmt/ if=/tmp/dump.contents bs=32k
Copy disk file to new tape:
# dd if=/tmp/dump.contents of=/dev/rmt/ bs=32k
Verify new tape is readable by restore(1)/vxrestore(1):
# restore tf /dev/rmt/, or
# vxrestore tf /dev/rmt/
fbackup(1M) (or SAM) tapes
Note: Unfortunately, fbackup(1M) (and SAM) creates backup volumes with a format that makes duplication of volumes by dd(1)
impossible.
See fbackup(1M) manpage for more information.
Steffi Jones