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
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop












{ 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?