- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How to recover one file from Ignite 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
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
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-17-2007 09:30 AM
тАО06-17-2007 09:30 AM
My team facing a problem, one of my team members,
Remove one directory from userтАЩs home. Directory
We have backup, That is ignite backup .
How to retrieve files and directory from ignite backup..?
How to check that file available or not in my ignite tapeтАж
I can use tar for recover тАж?
Os Hp ux 11.11
Thanks
Noble
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-17-2007 09:54 AM
тАО06-17-2007 09:54 AM
Solution# mt -f /dev/rmt/0mn rew
# mt -f /dev/rmt/0mn fsf 1
# tar tvf /dev/rmt/0m
To extract a file from the archive
# mt -f /dev/rmt/0mn rew
# mt -f /dev/rmt/0mn fsf 1
# tar xvf /dev/rmt/0m
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-17-2007 10:23 AM
тАО06-17-2007 10:23 AM
Re: How to recover one file from Ignite tape
# mt -f /dev/rmt/0mn rew -------├п Rewind tape.
# mt -f /dev/rmt/0mn fsf 1 ---├п Forward space 1 count files
# tar tvf /dev/rmt/0m ----├п verify files
To extract a file from the archive
# mt -f /dev/rmt/0mn rew --------├п Rewind tape.
# mt -f /dev/rmt/0mn fsf 1 ------├п Forward space 1 count files
# tar xvf /dev/rmt/0m
I want one directory , so I create new directory in /home/restoredata
I want restore data in /home/restoredata
What I will do for restore new location ├в ┬ж?
Thanks
Noble Sebastian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-17-2007 10:27 AM
тАО06-17-2007 10:27 AM
Re: How to recover one file from Ignite tape
above message some worng
I want data in new directory , so I create new directory in /home/restoredata
I want restore data in /home/restoredata
What I will do for restore new location from ignite tape........
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-17-2007 12:33 PM
тАО06-17-2007 12:33 PM
Re: How to recover one file from Ignite tape
Suppose that the path in the tar file is /home/common/xyz (files are present under the xyz directory) and you want to extract to /home/test directory, then simply do this:
a. mkdir -p /home/common
b. ln -s /home/test /home/common/xyz (assuming here that /home/test exists)
3. Run tar to extract the files.
tar -xvf tarfilename
This will extract the files that were in the archive to /home/test.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2007 12:28 AM
тАО06-18-2007 12:28 AM
Re: How to recover one file from Ignite tape
Instead of fiddling around, just use pax(1).