- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- patch 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
09-20-2001 04:19 AM
09-20-2001 04:19 AM
Any tips how to make a one-time install from a group of "individual patch" using swinstall.
FYI, I have downloaded an individual patch with *.txt extension then have used "sh
tnx,
joks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2001 04:24 AM
09-20-2001 04:24 AM
SolutionTo unshar and collect a series of patches into a depot do this:
# cd /tmp
# for X in PH*
> do
> sh $X
> done
# mkdir /tmp/patches
# for X in /tmp/PH*.depot
> do
> swcopy -s /tmp/${X} \* @ /tmp/patches
> done
...then use /tmp/patches as your depot for 'swinstall'.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2001 04:30 AM
09-20-2001 04:30 AM
Re: patch installation
Just a quick note...don't believe you have to make the directory /tmp/patches as swcopy will make the directory for you...
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2001 04:39 AM
09-20-2001 04:39 AM
Re: patch installation
to install multiple patches at once,if u downloaded all the patches under /tmp
then
#for x in '/tmp/*.txt
>do
>sh *.txt
>done
This will create the *.depot for all patches.
#mkdir /tmp/patch_depot
# for x in /tmp/PH*.depot
> do
> swcopy -s /tmp/${X} \* @ /tmp/patch_depot
>done
#swreg -l depot /tmp/patch_depot
#swinstall -s /tmp/patch_depot
select all the patches and install
after installation
#swreg -u -l depot /tmp/patch_depot
later
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2001 05:27 AM
09-20-2001 05:27 AM
Re: patch installation
If you want to move depot to another system its good idea to pack the depot directory structure into one file:
swpackage -s $PWD/depot -d $PWD/
Later,