- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: The difference between make_tape_recovery and ...
Categories
Company
Local Language
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Knowledge Base
Forums
Discussions
- Cloud Mentoring and Education
- Software - General
- HPE OneView
- HPE Ezmeral Software platform
- HPE OpsRamp
Knowledge Base
Discussions
Forums
Discussions
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
03-26-2006 03:57 PM
03-26-2006 03:57 PM
The difference between make_tape_recovery and make_sys_image
Please have a look at the command below:
make_tape_recovery -d /dev/rmt/* -x inc_entre=
make_sys_image -d
what's the difference between the contents of both achive
thx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2006 04:51 PM
03-26-2006 04:51 PM
Re: The difference between make_tape_recovery and make_sys_image
make_tape_recovery is a complete process of making a tape bootable alongwith copying the files to the tape. It infact internally also uses make_sys_image to backup files to tape.
make_sys_image is the method for backing up only your files to tape or local directory or remote directory.
make_sys_image is one of the steps performed by make_tape_recovery.
Also the intention of ignite backup should be to only back up vg00 and other application tools shall be used for backing up other data.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2006 05:34 PM
03-26-2006 05:34 PM
Re: The difference between make_tape_recovery and make_sys_image
make_tape_recovery is specific to the system it was created for and its identity includes hostname, ip_address, networking information,etc.In the event of a root disk failure, the recovery archive can be installed via tape to restore the system.
The best use for make_sys_image is when you are cloning boxes... make_tape_recovery is best used for backup and recovery of individual systems... although it can be used for cloning as well, but you will have to modify host specific data, IP, hostname... etc..
Regards,
Asif Sharif
Asif Sharif
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2006 06:14 PM
03-26-2006 06:14 PM
Re: The difference between make_tape_recovery and make_sys_image
make_tape_recovery uses the utilty make_sys_image with a different option set to create the tape archive.
Run a make_tape_recovery
then:
ps -ef | grep make_sys_image
You will then see the options make_tape_recovery uses.
Your make_sys_iumage will make a tar file that is suitable for use as an Ignite Golden image. There may be a brief disruption of network services while this happens.
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
03-26-2006 06:39 PM
03-26-2006 06:39 PM
Re: The difference between make_tape_recovery and make_sys_image
Thank you