- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Creating DVD recovery Media with Ignite-UX (C.6.2....
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
09-06-2005 01:03 AM
09-06-2005 01:03 AM
Creating DVD recovery Media with Ignite-UX (C.6.2.241).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 01:08 AM
09-06-2005 01:08 AM
Re: Creating DVD recovery Media with Ignite-UX (C.6.2.241).
http://www.docs.hp.com/en/B2355-90875/ch08.html
particularly the section on Building an Installation DVD.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 01:08 AM
09-06-2005 01:08 AM
Re: Creating DVD recovery Media with Ignite-UX (C.6.2.241).
There are some pointers to documentation, including an example script, here:
http://www.docs.hp.com/en/IUX/whatsnew.html
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 01:08 AM
09-06-2005 01:08 AM
Re: Creating DVD recovery Media with Ignite-UX (C.6.2.241).
The steps are outlined quite well in the Ignite documentation.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2005 02:24 AM
09-08-2005 02:24 AM
Re: Creating DVD recovery Media with Ignite-UX (C.6.2.241).
For reference, here is some documentation:
Document id: KBRC00016815
Ignite-UX Administration Guide:
Chapter 8 - Building an Installation CD
Below is what I determined was necessary to use with my rx4640:
a. Create a directory that will contain all required files
mkdir /depot/bootcd
cd /depot/bootcd
b. Build the minimal LIF-Header
For B.11.23 IPF:
make_medialif -v -m -r B.11.23 -o ipf -l bootlif
c. Check the contents of the bootlif file in the /depot/bootcd directory
lifls -l bootlif
Note: This information is displayed in the previous step, so I am not
sure how helpful this step is.
d. Copy the required EFI Partition:
cp /opt/ignite/boot/EFI_CD_image /depot/bootcd
e. Create the ISO-Image:
/opt/ignite/lbin/mkisofs -U -D -max-iso9660-filenames -no-emul-boot -b EFI_CD_image -eltorito-alt-boot -no-emul-boot -b bootlif -o /depot/bootcd/iuximage.iso /depot/bootcd
Note: Keep the order of the options as shown above!!!
f. Reposition of the LIF-Header:
/opt/ignite/lbin/instl_combine -C /depot/bootcd/iuximage.iso
g. Determine what "dev" is (to be used with cdrecord):
/opt/ignite/lbin/cdrecord -scanbus
Output was as follows:
Cdrecord-Clone 2.01 (--) Copyright (C) 1995-2004 Jörg Schilling
Using libscg version 'schily-0.8'.
scsibus0:
0,0,0 0) 'HL-DT-ST' 'DVD+RW GCA-4040N' '1.20' Removable CD-ROM
0,1,0 1) *
0,2,0 2) *
0,3,0 3) *
0,4,0 4) *
0,5,0 5) *
0,6,0 6) *
0,7,0 7) *
h) Burn the ISO-Image to CD/DVD media.
/opt/ignite/lbin/cdrecord -v -eject speed=8 dev=0,0,0 iuximage.iso
Note: The documentation states that the option -data is to be used,
this is the default, so I see no point in specifying it.
Ted