- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to copy a DDS3 to another DDS3
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
04-06-2004 09:48 AM
04-06-2004 09:48 AM
I need to make a backup copy of DDS3 DAT.
I have not two drives in one server.
Are there any command like dd to remote copy this DATs ??
thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2004 09:55 AM
04-06-2004 09:55 AM
Re: How to copy a DDS3 to another DDS3
Well, I'd think dd would be the command of choice. I'd probably create an intermediate file, xfer it & write it back to tape on the destination - something like:
dd if=/dev/rmt/0mn of=/path/to/dir/file.name bs=64k
then ftp, rcp, scp, NFS, whatever it over to dest system - then write it to tape:
dd if=/path/to/dir/file.name of=/dev/rmt/0mn bs=64k
Don't need to make it any harder than it really is.
Rgds,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2004 10:00 AM
04-06-2004 10:00 AM
SolutionYou just want to dupe a tape.
Same thing as I laid out - just skip the xfer section. Same thing - just create a file with dd & write the file back to a new tape with dd.
That's all there is to it.
Cheers,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2004 10:01 AM
04-06-2004 10:01 AM
Re: How to copy a DDS3 to another DDS3
So, what kind of backup is it?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2004 10:05 AM
04-06-2004 10:05 AM
Re: How to copy a DDS3 to another DDS3
1.- DDS3 with tar, and I want to duplicate.
In this case, I have not two drives in the same server.
2.- DLT with OBII, and I want to duplicate.
In this case I have a Library with 2 drives and I can do a dd if=/dev/rmt/1m of=/dev/rmt/2m
you say that 2.- not work ok ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2004 10:11 AM
04-06-2004 10:11 AM
Re: How to copy a DDS3 to another DDS3
To copy to disk:
dd if=/dev/rmt/0m ibs=20b obs=200b of=/mydir/myfile.tar
To copy from disk back to tape:
dd if=/mydir/myfile.tar ibs=200b obs=20b of=/dev/rmt/0m
Man dd for details.
-----------------------------------------
OmniBack II and/or Data Protector tapes cannot be duplicated. The format is simply too complex. The only option is omnimcopy but that requires identical drive to identical drive although they could be on different hosts.