- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Restoring specific file 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-12-2008 12:12 AM
08-12-2008 12:12 AM
I have an ignite backup on tape
i want to restore
some specific files from it .
what would be the steps.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2008 12:28 AM
08-12-2008 12:28 AM
Solutionsee this or many other similar threads.
http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1258475
Why are people using Ignite as their sole means of system backup? Its such a bad tool for that.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2008 12:30 AM
08-12-2008 12:30 AM
Re: Restoring specific file from ignite backup
or
tar -xvf /dev/rmt/0mnb /path/myignite.backup
0mnb is a tape device file. Use the one relevant to your system.
I believe the ignite backup is just a tar file. So then again use tar to list the contents of the Ignite backup:
tar -tvf /path/to/restored/myignite.backup
to list the content of the ignite backup restored from tape.
Then use
tar -xvf /path/to/restored/myignite.backup /path/of/filetorestore/filename
to extract the file. Include full path of the file to extract (obtained from tar -tvf).
So it may be something like this once you have the ignite backup on disk.
tar -xvf /path/myignite.backup /path/filename
Cheers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2008 02:05 AM
08-12-2008 02:05 AM
Re: Restoring specific file from ignite backup
Suppose if you want to restore passwd file
Use
tar -xvf /dev/rmt/0mn etc/passwd
Regards
Sanjeev
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2008 04:24 AM
08-12-2008 04:24 AM
Re: Restoring specific file from ignite backup
Bill Hassell, sysadmin