How to patch and rollback patch in Redhat/CentOS Linux?
Applying periodic updates on the system in the form of patches to keep the operating system updated and secure is an important job function of every system administrator. Patching the operating system certainly enhances the functionality and health of the system for the better but in case of few isolated instances patching operating systems may cause problems in the working of the application or database. What is a patch? A patch is a piece of software code which will be inserted into existing programme in the system. This is an imidate fix to existing software before a minor release is planned. A patch is a kind of temporary and quick fix to existing software. What is a patch looks like? Suppose you have some xyz.c file within your Linux kernel which require a patch, the patch is a just the difference between the existing line of code in that file and extra lines which we will add to this file. It is just a diff of lines of code which is added to existing file. On Red Hat based systems we use the yum package manager as the preferred method to install and update packages. You may please go through our earlier post on yum which explains the basics of yum and rpm differences and YUM server setup. In this article, we’ll be using yum to Update system with patches Downgrade system patches...
Read More