- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Ignite UX
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
07-22-2010 10:20 AM
07-22-2010 10:20 AM
I just wanted to make the image of my HP-UX 11 OS to the tape device. There is one legacy application(pi-open) is also running on this server.
Can anyone help me to understand the difference between creating a image with make_sys_image and make_tape_recovery command?
Secondly, will after restore from image everything will work fine as it was before?
Please help me to understand.
Thanks,
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2010 10:40 AM
07-22-2010 10:40 AM
Solutionmake_tape_recovery is a wrapper that does make_sys_image commands correctly.
For backups, use make_tape_recovery
make_sys_image with other options can create golden images and other types of Ignite backups.
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
07-22-2010 10:56 AM
07-22-2010 10:56 AM
Re: Ignite UX
Which one you would advice to take the image of my OS backup? so that If I restore it later on, system and all applications will work as it was before taking the image.
Thx,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2010 10:59 AM
07-22-2010 10:59 AM
Re: Ignite UX
make_tape_recovery
mikap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2010 02:00 PM
07-22-2010 02:00 PM
Re: Ignite UX
To create a recovery archive to local tape that includes the complete root volume group (vg00) as well as the complete vg01 volume group (assuming that you had a vg01 configured):
# make_tape_recovery -x inc_entire=vg00 -x inc_entire=vg01
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2010 04:53 PM
07-23-2010 04:53 PM
Re: Ignite UX
The command format would be:
make_tape_recovery -Iv -a /dev/rmt/0m -x inc_entire=vg00
-I is create interactive
-v is verbose (always nice)
-a is the tape device, note that I did not use 0mn - this would rewind and overwrite the bootloader written to the tape.
-x inc_entire=vg00. Very important, especially if you don't want vg01, or others.
You could also use -A instead of -x inc_entire=vg00, it would do everything on the system.
To test, rewind the tape (mt -f /dev/rmt/0mn rew), the fast forward over the bootloader (mt -f /dev/rmt/0mn fsf 1) and you can re-read with tar now. (tar tvf /dev/rmt/0m).
Note that with PA systems, it's one fast forward, with IA systems, my memory may be escaping me, but I think it's 6, as there are more subsections to the bootloader partitioning scheme. I have a note somewhere, but it's not handy at the moment.
Best regards,
Don
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2010 07:20 AM
07-26-2010 07:20 AM
Re: Ignite UX
Thanks,