1824822 Members
4328 Online
109674 Solutions
New Discussion юеВ

check patches applied

 
SOLVED
Go to solution
hope_8
Occasional Contributor

check patches applied

hi,

i need to know how to check all patches applied (with their corresponding dates of installation) for the following systems:
1. HPUX 11.11
2. OS400
3. AIX v5
4. Sun Solaris 8
5. Red Hat Linux 3

Hope u guys could help me.

Thanks in advance =)
6 REPLIES 6
Piergiacomo Perini
Trusted Contributor

Re: check patches applied

hi, hope

this is for HPUX

swlist ├в l patch

regards
pg
Pete Randall
Outstanding Contributor

Re: check patches applied

For HP-UX, I use

swlist -l product |grep 'PH'


Pete

Pete
Robert-Jan Goossens
Honored Contributor
Solution

Re: check patches applied

Hi,

I don't think you can get the install date, but below command give you the latest revision/patch list.

For each operating system, use the method specified below for such operating
system to identify the most recently installed patch or maintenance level:
1) Windows ├в Control Panel --> Add/Remove Programs or hfnetchk.exe
2) Unix: Solaris ├в showrev -p or patchadd -p
3) Unix: AIX ├в instfix -ia
4) Unix: FreeBSD ├в /usr/src/ patch -p
5) Unix: Mac OS X ├в /usr/bin/uname -v
6) Unix: HP/UX ├в swlist -l patch
7) Linux: Redhat ├в rpm -q
8) Linux: Mandrake ├в rpm

Regards,
Robert-Jan
James R. Ferguson
Acclaimed Contributor

Re: check patches applied

Hi:

For HP-UX:

# swlist -l patch -a date

Regards!

...JRF...
Sp4admin
Trusted Contributor

Re: check patches applied

Hi,

I can only speak on HPUX.

#show_patches
#swlist -l fileset -a state | grep PH
#swlist -l patch
#swlist -l | grep PH*

Hope this helps...

sp,

hope_8
Occasional Contributor

Re: check patches applied

Thanks for all those who helped =)