- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- check_patches returns PROBLEM FOUND
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
05-19-2003 05:49 AM
05-19-2003 05:49 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 05:59 AM
05-19-2003 05:59 AM
Re: check_patches returns PROBLEM FOUND
I don't think it should bother you - these
patch filesets are superseeded anyway.Can run
swlist -l fileset -a state for same results.
Zeev
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 06:03 AM
05-19-2003 06:03 AM
Re: check_patches returns PROBLEM FOUND
swlist -l patch -a state
is there a file /var/adm/sw/needs_config ?
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 06:07 AM
05-19-2003 06:07 AM
Re: check_patches returns PROBLEM FOUND
I would do nothing. 'check_patches' has noted, "...Since these patch filesets have already been superseded on this system, it may not be safe to have the configure script executed via the swconfig(1M) command. Doing so could have a negative effect on the active patch.".
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 06:48 AM
05-19-2003 06:48 AM
Re: check_patches returns PROBLEM FOUND
cleanup -c 1
Anything thats been superseded by more than one patch will be gone. You could set it to zero, but that makes me nervous.
The command above will reduce but not eliminate the messages you are getting.
It is perfectly acceptable though to do nothing.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-19-2003 10:59 PM
05-19-2003 10:59 PM
Re: check_patches returns PROBLEM FOUND
Thanks for your answers. But I still wonder why check_patches returns "Problems Found" result if all patches are in correct state as you said ? What can i do to get "No problems found" result ?
It's a newly cold installed system HPUX 11.0 (from March 2002 Install/Update/Recovery and Support Plus CDs).
Bill, where is no /var/adm/sw/needs_config file. I attached "swlist -l patch -a state" output.
Steven, "cleanup -c 1" didn't remove any strings in check_patches.report. It only removed files in /var/adm/sw/save folder.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2003 12:14 AM
05-20-2003 12:14 AM
SolutionI believe it started with the June 2001 11.00 core/install CD that you have this effect that
installed filesets remain after a standard installation.
The reason is that patches are installed and then there is no configure but superseding patches are installed on top and only then the new (superseding) filesets are getting configured.
The older ones are not configured because the patch state is already "superseded"
You can easily get around your problem by doing the following:
swlist -l fileset -a state | grep installed | awk '{print $1}' > /tmp/inst_fsets
swmodify -a state=configured -f /tmp/inst_fsets
This will modify the state of all "installed" filesets to "configured".
Regards,
Bernhard