- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How install more than one .depot patch
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
08-06-2007 08:27 AM
08-06-2007 08:27 AM
How install more than one .depot patch
I want install 2 .depots patch locate in /tmp/hp directory but I don´t know how...
I made
swinstall -s /tmp/hp/1.depot /tmp/hp/2.depot
and fails...
Somebody can help me please....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2007 08:42 AM
08-06-2007 08:42 AM
Re: How install more than one .depot patch
If the swcommands seem a bit intimidating then just use SAM->Software Management->Copy Software to Depot. You will actually do this twice specifying the PHXX_NNNNN.depot file for the source and selecting a target location for the new depot. When you are done, then run swinstall -s /your_combined_depot location and you will be able to Mark both patches and install then in one session.
When you are all done, examine samlog and you can see all the steps that are done so that you can do it manually in the future. This is actually a good way to learn many of the tasks SAM does for you (e.g. kernel building).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2007 02:07 PM
08-06-2007 02:07 PM
Re: How install more than one .depot patch
you can create depot bundle from many of software depot
belows, script to create depot bundle:
for i in /pwd/*.depot
do
swcopy -s $i \* @/tmp/depot
done
-yut-
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2007 03:34 PM
08-06-2007 03:34 PM
Re: How install more than one .depot patch
Just trigger the command and it will prompt for rest all
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2007 06:24 PM
08-06-2007 06:24 PM
Re: How install more than one .depot patch
If you download any patch bundle from HPs' patch site (usually as a tgz archive) in it you will find a script whose name begins with "create_depot".
Have a look at it to find a nice example of how to use swcopy to bundle several different patches (though related to each other) into one single depot that will only require one swinstall invocation with only one reboot if PHKL_ or PHNE_ patches requiring this are included.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2007 02:31 AM
08-07-2007 02:31 AM
Re: How install more than one .depot patch
assuming the patches are in the pwd
for i in `ls *.depot`
do
swinstall -s $PWD/$i \*
done
This should install them one at a time. hopefully they are not dependent on each other if so then you need to copy them to a depot
and then install from the depot
for i in `ls *.depot`
do
swcopy -s $PWD/$i \*
done
swinstall -s /var/spool/sw
Then you can select them all and install them