- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- DLT restore
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
Discussions
Discussions
Discussions
Forums
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
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
тАО10-13-2004 10:47 PM
тАО10-13-2004 10:47 PM
I have a DLT tape from server A and need to recover a particular file from from it onto another box. I currently have the tape in the tape device in tape B (both servers are HP-UX 11i) and basically need to search for the file from my tape and then restore it to a tmp directory. Can anybody advise as to what commands I would need to use in order to perform this task?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-13-2004 11:22 PM
тАО10-13-2004 11:22 PM
Re: DLT restore
Use SAM:
#SAM (Backup and Recovery -> Interactive Backup and Recovery -> Actions -> Use Remote Backup Device -> Recover Files or Directories...)
With this you can recover at least the intire tape. You can also choose "Get List of Files on Device..." to choose before the file you want using the same index you used to create the tape backup
Best Regards,
Eric Antunes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-13-2004 11:25 PM
тАО10-13-2004 11:25 PM
Re: DLT restore
It kind of depends on what command you used to back it up. If you used SAM, I believe that means it used fbackup. However, it could have been produced with tar, dd, cpio, or some proprietary software like OmniBack.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-13-2004 11:30 PM
тАО10-13-2004 11:30 PM
SolutionRestore command to use depend on how backup has been made.
You have frestore (if fbackup has been used),
tar -x (if tar -c|r), dd (if dd), and so on.
To restore
cd /tmp
frestore -x -F -i
Or
tar xvf
For viewing catalog:
frestore -I
Or
tar tvf
Rgds
JMB
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-13-2004 11:36 PM
тАО10-13-2004 11:36 PM
Re: DLT restore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-13-2004 11:57 PM
тАО10-13-2004 11:57 PM
Re: DLT restore
Yes, you would need to use OmniBack.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-14-2004 12:06 AM
тАО10-14-2004 12:06 AM
Re: DLT restore
Rgds,
Dermot