- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Restoring one Filesystem from Ignite Backup?
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
08-18-2005 01:26 PM
08-18-2005 01:26 PM
I have created Ignite tape using make_tape_recovery command. And I wanted to restore /home filesystem from it. How can I do that. Please do reply asap.
Thank you,
Regards.
Kannan.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2005 01:30 PM
08-18-2005 01:30 PM
Solution# mt -f /dev/rmt/?mn rew
Now space forward past the boot LIF on the tape:
# mt -f /dev/rmt/?mn fsf 1
Now extract what you want:
# tar -xvf /dev/rmt/?mn home
Be sure to replace the /dev/rmt/?mn with your appropriate tape device and be sure to use the no-rewind option (the 0mn, 1mn, etc.)
Also note that there is no leading '/' on what you are extracting from the tape.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2005 01:36 PM
08-18-2005 01:36 PM
Re: Restoring one Filesystem from Ignite Backup?
Well , just wanted to know ,
I have lost all data of /home , now /home is empty , I want to retore the /home , and if I give
# cd /home
# tar -xvf /dev/rmt/0m home , will it restore all the data of /home directory , to /home.
And also where norewind option has to be
use.
Thanks again.
Kannan.
--------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2005 01:40 PM
08-18-2005 01:40 PM
Re: Restoring one Filesystem from Ignite Backup?
# cd /
Then follow the directions above. Anywhere I have the /dev/rmt/?mn, substitute your tape drive. Make sure you use 0mn, 1mn, or whatever is appropriate where ever I used ?mn.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2005 01:45 PM
08-18-2005 01:45 PM
Re: Restoring one Filesystem from Ignite Backup?
Regards,
Kannan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2005 02:36 PM
08-18-2005 02:36 PM
Re: Restoring one Filesystem from Ignite Backup?
Important to decribing the use of no rewind device here. While taking ignite on a tape the tape has to write two different sessions on to the same tape one is in LIF format for making it bootable and another is for actually data backup in tar or cpio format. That is why while using mt command to fast forward to second session in this case as you are not using the boot option from tape use no rewind option otherwise your tape will rewind at the end of the mt command and will be positioned at the beginning of the tape ( Start of the LIF volume).
You can also find out the current position of the tape by using
#mt -t /dev/rmt/?mn status
Where ?mn is your current device file.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2005 03:50 PM
08-18-2005 03:50 PM
Re: Restoring one Filesystem from Ignite Backup?
Thanks once again.
Regs,
Kannan