- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Fail to install support.plus and other software du...
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
01-20-2003 12:51 PM
01-20-2003 12:51 PM
Fail to install support.plus and other software during uninteractive ignite from net
I use Ignite to install HP servers from the network, using an UNinteractive install.
I followed the instructions on how to add more software to the installation, like Support.Plus, but it just doesn't work, the installation claims to finish allright, but the support.plus doesn't get installed.
This is very wierd, and I'm sure am missing something, because I read the manual more then one time.
Can some1 please tell me again what are the procedures to add support.plus into an ignite Jumpstart?
(I don't need explanations - Just do 1,2,3,4.... etc., I want to compare it to what I did and failed to work)
10x,
Noam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2003 01:43 PM
01-20-2003 01:43 PM
Re: Fail to install support.plus and other software during uninteractive ignite from net
(01) Have you included the supportplus bundle in the depot.
(02) some of the Supportplus have a EMS patch dependecies .. please check whether that patch is installed.
(03) please check the log files for errors and see why it is missing and resolve the errors
HTH
Manju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2003 02:03 PM
01-20-2003 02:03 PM
Re: Fail to install support.plus and other software during uninteractive ignite from net
I was more looking for commands to do, not "Have I done", I want to compare the steps I should do, to what I really did.
(and i mean every command, on how to create the bundle with "swcopy" and add to INDEX, like I was a stupid child and should be explained EVERYTHING :-) )
And - the log seems fine, no errors. But, the support plus still didn't install.
Noam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2003 11:53 AM
01-21-2003 11:53 AM
Re: Fail to install support.plus and other software during uninteractive ignite from net
1. In /etc/fstab comment out any cdrom and unused filesystems that you don't want SD-UX to mount during the following procedures.
2. Add all the codewords you will need for all the install media you have.
3. For each install media (Core and Apps), run
make_depots -r B.11.00 -s /dev/dsk/c0t0d0
on the unmounted cdrom block device file. Ignite will create and populate two default depots: core and apps under /var/opt/ignite/depots/Rel_B.11.00 using the SD commands with the appropriate arguments.
4. Uncomment the cdrom filesystem in /etc/fstab that you will be using.
5. For Support Plus the CD-ROM must be mounted since it is not a single depot like the other media. Then run
make_depots -r B.11.00 -s /cdrom/QPK1100
make_depots -r B.11.00 -s /cdrom/HWE1100
make_depots -r B.11.00 -s /cdrom/DIAGNOSTICS/B.11.00
NOTE: These will be added to the apps depot.
6. Build the Ingite data files:
make_config -r B.11.00
7. To make the apps depot available during an Ignite install, edit /var/opt/ignite/data/Rel_B.11.00/apps_cfg and add "load_order = 1" to the sw_source parameter group at the top. See the core_cfg for example.
Now you should be able to see everything using swlist -id.
Oh, don't forget to uncomment the other filesystems in /etc/fstab that you may need later.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2003 07:24 AM
01-31-2003 07:24 AM
Re: Fail to install support.plus and other software during uninteractive ignite from net
It comes out that even everything I did was correct, and I didn't miss a thing, I had to do one other step in order to succeed.
It appears that after installing the HP-UX the ignite ignores any other software I have had created it a config file (make_config) and after that added it to the INDEX file.
I had to add to every config file in every "sw_sel" section the following line:
load_with_any ~ "*"
that forced the ignite to install these software depots too.
(if any1 wants to automate this process, here's a little command that will do the trick for you:
perl -pe 'if (/\s*DESCRIPTION/) { $_ .= "load_with_any ~ \"*\"\n" }
Noam