- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to recover overwrite tape
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
05-04-2003 08:56 PM
05-04-2003 08:56 PM
How to recover overwrite tape
I need Ur help.
I've just overwriten tape by tar command. Now I need old data on that tape. Is it possible for me to get old data ?
Thanks for your help.
BR,
Sam.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-04-2003 08:58 PM
05-04-2003 08:58 PM
Re: How to recover overwrite tape
To my knowledge, the old data is gone forever.
Rgds..
Suhas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-04-2003 09:09 PM
05-04-2003 09:09 PM
Re: How to recover overwrite tape
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-04-2003 09:18 PM
05-04-2003 09:18 PM
Re: How to recover overwrite tape
try http://www.vogon-international.com . Data overwritten is lost, but I believe if there's a data chunk left from that backup (not overwritten but your tar operation) then something can be saved
Eugeny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2003 04:31 AM
05-05-2003 04:31 AM
Re: How to recover overwrite tape
It depends on what the data is worth.
Otherwise, consider that you have made a mistake and it is not recoverable.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2003 04:44 AM
05-05-2003 04:44 AM
Re: How to recover overwrite tape
HTH
mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2003 04:54 AM
05-05-2003 04:54 AM
Re: How to recover overwrite tape
When you write to a tape, there is a EOF mark maded, then an EOM mark. When you do something like this..
tar cvf /dev/rmt/0mn /etc
/etc is put on tape, and an EOM mark is written (2 EOF marks).
Now, since we did not rewind the tape, we can do this...
tar cvf /dev/rmt/0m /usr
Now, the last EOF mark is erased and the new volume created. Remember that EOM is a double EOF, so we still have 1. The new volume is written, then a new EOM mark is made. *NOTE I REWOUND THE TAPE*
Now, we do this.
tar cvf /dev/rmt/0mn /etc
The tape has been rewound, and now we have created a new volume of /etc. A new EOM mark is made. Our backup of /usr is now gone, as we can tell the tape to go to an EOF mark, or an EOM mark. There is no way with standard hardware to pass an EOM mark.
Hope this helps explain it all :)
Shannon