- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: patche installation
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
06-03-2005 12:52 AM
06-03-2005 12:52 AM
I have downloaded following patches from Hp website
BUNDLE11i_B.11.11.0306.1.depot GOLDQPK11i_Base.11.11.0412.5.depot
GOLDQPK11i_B.11.11.0412.5.depot HWEnable11i_B.11.11.0412.5.depot
and copied into a directory
Can anybody tell me the exact command line to install these patches
Thanks
BInu
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2005 12:58 AM
06-03-2005 12:58 AM
Re: patche installation
swinstall -s /dir/depot_name
for each depot you downloaded.
Dave
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2005 01:02 AM
06-03-2005 01:02 AM
Solutionmkdir /my_patch_depot
for i in *.depot
do
swcopy -s ${PWD}/$i \* @ /my_patch_depot
done
Then run swinstall specifying /my_patch_depot as the source and select all the depots within.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2005 01:03 AM
06-03-2005 01:03 AM
Re: patche installation
If I try this .Iam geting following error
messages
Thanks
Binu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2005 01:03 AM
06-03-2005 01:03 AM
Re: patche installation
If I try this .Iam geting following error
messages
There is currently no depot software on host "secsrc21" at location x x
xlqx "/patches/patches/". Make sure that an absolute pathname is specified xqk x
xx x for location (beginning with "/").
Thanks
Binu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2005 01:07 AM
06-03-2005 01:07 AM
Re: patche installation
swinstall -s `pwd`/foo.depot \*
Where foo.depot is the name of your depot file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2005 02:29 AM
06-03-2005 02:29 AM
Re: patche installation
I have created a script like this
mkdir /my_patch_depot
for i in *.depot
do
swcopy -s ${PWD}/$i \* @ /my_patch_depot
done
then ran swinstall -s /my_patch_depot
It works fine
Thanks to alll
Binu