- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Restore specified files from Ignite
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
11-04-2009 12:25 AM
11-04-2009 12:25 AM
I lost Xmanager license file and just I need it.
My server HP-UX 11iv1
Regards,
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2009 12:33 AM
11-04-2009 12:33 AM
Solutionyes it is possible.
what type of ignite do you have ??? tape/server
http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1373017
mikap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2009 12:42 AM
11-04-2009 12:42 AM
Re: Restore specified files from Ignite
tape
I will check recommended link out
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2009 12:42 AM
11-04-2009 12:42 AM
Re: Restore specified files from Ignite
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2009 12:51 AM
11-04-2009 12:51 AM
Re: Restore specified files from Ignite
tape
HP9000
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2009 01:01 AM
11-04-2009 01:01 AM
Re: Restore specified files from Ignite
# mt -f /dev/rmt/_mn rew
# mt -f /dev/rmt/_mn fsf 1
# tar -tvf /dev/rmt/_mn
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2009 03:42 AM
11-04-2009 03:42 AM
Re: Restore specified files from Ignite
tar bla ..bla .. > /tmp/list.ignite
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2009 03:49 AM
11-04-2009 03:49 AM
Re: Restore specified files from Ignite
From Ignite Tape:
(1) mt -f /dev/rmt/0mn rew
(2) mt -f /dev/rmt/0mn fsf 1
(3) tar xvf /dev/rmt/0mn etc/lvmtab
Note that you have specify full path to your directory without the first '/' as ignite backs up the contents relative to /.
To see contents:
#tar tvf
Regds..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2009 07:04 AM
11-04-2009 07:04 AM
Re: Restore specified files from Ignite
You need to give fsf 22 instead of 1 if you are using a tape made of Itanium servers.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2009 07:11 AM
11-04-2009 07:11 AM
Re: Restore specified files from Ignite
>>If I just need to see list , can I do it with as tar bla ..bla
From tar file you can see the file listing with "tar -tvf file.tar"
Suraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2009 08:23 AM
11-04-2009 08:23 AM
Re: Restore specified files from Ignite
What does fsf exactly mean ? man pages says forwarding count file number but you say use 22 for integritiy , what exactly does it skip the first 22 files ??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2009 12:28 PM
11-04-2009 12:28 PM
Re: Restore specified files from Ignite
The suggestion is to use the command 'mt' magnetic tape and 'fsf 1' forward skip file ... which means to jump over the boot record, and position the tape for start reading from here.
This is why they also refere to a No-Rewind device /dev/rmt/0mn (or _mn where the _ is the number representing your tape device...)
mt -f /dev/{yourtapdev}n fsf 1
- worked great with PA-Risc, but apparently you need to jump 22 forward for Itanium (according to Viveki).
When this is done, the tape should be positioned where the tar-ball start.
Therefore you can issue the next command...
tar -tvf /dev/{yourtapdev}
Hope this explains it
/2r