What is patch?
1)Patch is nothing but updated or enhanced version of installed software (binary file or library collection) which update the software, in order to increase the:
a. Stability
b. Performance
c. Bug fix
d. New features into system.
2) Visit the site SunSolve to download or to find out the patch reports.
3) Each patch has unique patch number followed by revision number for e.g. 111112-03
To Displays a list of the patches currently applied:
1) Use the command patchadd –p as follows:
# patchadd –p
OR
# showrev -p
How to add or install patch to system?
1) Download the patch from suns web site.
2) Unzip the patch by running command:
#unzip 111307-04.zip
3 Apply the patch as follows:
# patchadd 111307-04
Checking installed patches...
Verifying sufficient filesystem capacity (dry run method)...
Installing patch packages...
Patch number 111307-04 has been successfully installed.
See /var/sadm/patch/111307-04/log for details
4) Reboot the system
To remove the patch:
1) Simply run command patchrm
# patchrm 111112-03
How to install the patch without backing up current file (use with caution)?
1) Use –d switch to patchadd command
# patchadd –d 111112-03
Featured Articles:
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins

- My 10 UNIX Command Line Mistakes
- 25 PHP Security Best Practices For Sys Admins
- The Novice Guide To Buying A Linux Laptop
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- Top 20 OpenSSH Server Best Security Practices
- Top 10 Open Source Web-Based Project Management Software
Facebook it - Tweet it - Print it -
We're here to help you make the most of sysadmin work. So, subscribe!

{ 2 comments… read them below or add one }
Now try using the patch-managing software sun provides using nothing but a CLI !
What is the difference between showrev command and patchadd –p command?