- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Installing kernel patches
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
12-03-2001 08:23 AM
12-03-2001 08:23 AM
Installing kernel patches
I have a series of kernel patches I have to install on a hp-ux 11.0 server. Is there a way to install them without having to reboot after each an everyone of them?
Richard.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2001 08:25 AM
12-03-2001 08:25 AM
Re: Installing kernel patches
http://forums.itrc.hp.com/cm/QuestionAnswer/1,11866,0xbc8cabe92dabd5118ff10090279cd0f9,00.html
Share and enjoy! ian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2001 08:28 AM
12-03-2001 08:28 AM
Re: Installing kernel patches
Go to the "IT Resource Center Home"
Under "Maintenance and Support", select "more..."
Under "Patching", select "customized patch bundles".
And perform a custom patch bundle. This ensures you get all of the patches you need, not just a selected few.
There are other ways to "bundle" the patches, but the "Custom Patch Manager" is the safest!
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2001 08:28 AM
12-03-2001 08:28 AM
Re: Installing kernel patches
Yes, by making a depot an than installing that
depot.
Example
root/sv00220#swcopy -vv -s /var/adm/crash/patch/PHKL_18543.depot \*
@ /var/adm/crash/patch/veritas
root/sv00220#swcopy -vv -s /var/adm/crash/patch/PHCO_23651.depot \*
@ /var/adm/crash/patch/veritas
root/sv00220#swinstall -vv -p > -x autoreboot=true > -x patch_match_target=true > -x autoselect_patches=true > -s /var/adm/crash/patch/veritas \*
Regards,
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2001 08:30 AM
12-03-2001 08:30 AM
Re: Installing kernel patches
The install should be
root/sv00220#swinstall -vv -p -x autoreboot=true -x patch_match_target=true -x autoselect_patches=true -s /var/adm/crash/patch/veritas \*
Regards,
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2001 08:32 AM
12-03-2001 08:32 AM
Re: Installing kernel patches
Do this (assuming that your patches reside in /tmp):
PDIR=/tmp/patch_depot
mkdir $PDIR
cd /tmp
for X in PH*.depot
do
swcopy -s ${PWD}/${X} \* @ ${PDIR}
done
#
swlist -s ${PDIR}
...Now specify $PDIR as you source depot for the 'swinstall'.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2001 08:58 AM
12-03-2001 08:58 AM
Re: Installing kernel patches
Copy all the patches in depot and then install it from the depot.
for i in `ls PH*.depo`
do
swcopy -s ${i} \* @ ${PATCH_DEPOT_DIR}
done
Once copied in depot use
#swinstall -x autoreboot=true -x patch_match_target=true -s
Thanks.
Prashant.
Thanks.
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2001 10:15 AM
12-03-2001 10:15 AM