- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: determining what patches have changed the libr...
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
10-21-2002 06:12 AM
10-21-2002 06:12 AM
determining what patches have changed the library files
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2002 06:14 AM
10-21-2002 06:14 AM
Re: determining what patches have changed the library files
swlist -l file | grep
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2002 06:19 AM
10-21-2002 06:19 AM
Re: determining what patches have changed the library files
/var/adm/products/
which is actually the description file of the patche that you got installed. The patch description file will show which files will get overwritten when you install it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2002 06:19 AM
10-21-2002 06:19 AM
Re: determining what patches have changed the library files
Stupid me - I lost the procedure.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2002 06:36 AM
10-21-2002 06:36 AM
Re: determining what patches have changed the library files
Not so easy, because if a patch delivers only an object file, you will find the objetc name preceded with /. For example, PHKL_18543 on HP-UX 11.00 modifies /usr/conf/lib/libhp-ux.a by delivering a new spp_sim_disk.o. In swlist -l file you will find :
PHKL_18543.CORE2-KRN: /spp_sim_disk.o
If you look in /var/adm/sw/products/PHKL_18543/CORE2-KRN/INFO, you will find :
file
path /spp_sim_disk.o
type a
size 14184
cksum 867838125
mode 0444
uid 2
gid 2
owner bin
group bin
mtime 930064312
archive_path /usr/conf/lib/libhp-ux.a
Which means that this object has to be put in /usr/conf/lib/libhp-ux.a. So you will have to write a nice shell script to find it ...
Another solution would be to use grep on README files. Each patch delivers a README file (/var/adm/product/PHxxx/pfiles/README). In this file, you get a description of corrected bugs and the list of patch objects in a more readable format. In our case, you will find :
867838125 14184 /usr/conf/lib/libhp-ux.a(spp_sim_disk.o)
First numbers are output of cksum on the object. So in this case, the required script will be easier, something like
grep library /var/adm/products/PH*/pfiles/README
Regards,
Jean-Louis.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2002 06:45 AM
10-21-2002 06:45 AM