- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- first write date of dds 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-27-2002 11:35 PM
05-27-2002 11:35 PM
first write date of dds tape
I have many DDS tapes recording our data backup from 3 years ago. Now I want to know in which date I wrote the data into the tape. Can we find this from the tape? I believe that there must some fields on the tape holding this information just as file feature. But how can we retrieve out?
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2002 11:46 PM
05-27-2002 11:46 PM
Re: first write date of dds tape
You can get the volume header if the tapes are fbackup volumes
frecover -V `tty`
Regards
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2002 11:49 PM
05-27-2002 11:49 PM
Re: first write date of dds tape
You can also generate an index
frecover -I /tmp/tapeindex
If you wish to know wether all the data is on the tape -
Check the index - get the last file backedup and attempt to restore that file, if the file restores ( to /tmp for eg )
cd /tmp
frecover -xXv -f /dev/rmt/
You more than likely have a full tape as per index
Regards
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2002 11:51 PM
05-27-2002 11:51 PM
Re: first write date of dds tape
If it's an fbackup tape then you can get details that include when the tape was written by using frecover with the -V flag.
If not fbackup, let us know what format the tapes are...
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2002 09:43 AM
05-28-2002 09:43 AM
Re: first write date of dds tape
You can also do a tar and check if the tapes were written in tar format.
tar -tvf /dev/rmt/0m
If so then it would list the contents and then you can do a tax -xvf to retrieve the files if required.
If done thro cpio then do to list contents
cpio -ictvm -I /dev/rmt/0m
HTH,
Piyush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2002 12:54 PM
05-28-2002 12:54 PM
Re: first write date of dds tape
If the data was backed up using fbackup. you can get this info on when the backup was made using frecover. If the data was backed up using tar/cpio, it is not possible until you restore the data and check for the data of some log file.
Hope this helps.
Regds