- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Tape duplication
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-12-2001 01:54 PM
06-12-2001 01:54 PM
Tape duplication
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2001 06:08 PM
06-12-2001 06:08 PM
Re: Tape duplication
We're using this program though no guarantee, just try it yourself. Pls take note that this is tape to tape copy, so it should be on the same capacity. Good luck
? ./tape_copy ?
This program is supplied and should only be used on the understanding
that there is NO support or liability on the part of Hewlett-Packard.
You should therefore NOT rely on the copied tapes being correct.
You use this at your own risk!
Usage ./tape_copy input_mag_tape output_mag_tape
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2001 09:04 PM
06-12-2001 09:04 PM
Re: Tape duplication
Try this:
# dd if=/dev/rmt/0m of=/dev/rmt/1m
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2001 10:49 PM
06-12-2001 10:49 PM
Re: Tape duplication
for your bootable tape (i guess you have used Ignite/UX make_tape_recovery) you can use the command
/opt/ignite/bin/copy_boot_tape
(see man 'copy_boot_tape')
to duplicate the tape.
For other tapes you could use the dd command ie:
dd if=/dev/rmt/0m of=/dev/rmt/1m bs=10k
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2001 01:10 AM
06-13-2001 01:10 AM
Re: Tape duplication
dd if=/dev/rmt/0mn of=/dev/rmt/1mn bs=2k dd if=/dev/rmt/0m of=/dev/rmt/1m bs=10k
If you only have one tape drive, and have enough disk space to hold the contents of both tape files, use something like this4:
dd if=/dev/rmt/0mn of=/var/tmp/f1 bs=2k dd if=/dev/rmt/0m of=/var/tmp/f2 bs=10k
(Insert blank tape now)
dd if=/var/tmp/f1 of=/dev/rmt/0mn bs=2k dd if=/var/tmp/f2 of=/dev/rmt/0m bs=10k
Also see the copy_boot_tape (1M) manpage.