<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Linux patch question in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596882#M40022</link>
    <description>you can run&lt;BR /&gt;#rpm -qa --last&lt;BR /&gt;&lt;BR /&gt;It would list all the patched installed date wise.&lt;BR /&gt;&lt;BR /&gt;BR,&lt;BR /&gt;Kapil+</description>
    <pubDate>Tue, 09 Mar 2010 02:51:19 GMT</pubDate>
    <dc:creator>Kapil Jha</dc:creator>
    <dc:date>2010-03-09T02:51:19Z</dc:date>
    <item>
      <title>Linux patch question</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596879#M40019</link>
      <description>Hello we have servers with Redhat and Suse Operating systems - i would like to know when was the server last patched and is it uptodate.&lt;BR /&gt;In other words - as in hpux we check bundles and compare with latest patch bundles and make sure it is updated or not - i would like to perform the same thing in linux - pls advice .&lt;BR /&gt;Is there a patch bundle for linux as well as other operating systems HP and solaris..?&lt;BR /&gt;&lt;BR /&gt;Thanks Much in advance</description>
      <pubDate>Mon, 08 Mar 2010 16:57:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596879#M40019</guid>
      <dc:creator>navin</dc:creator>
      <dc:date>2010-03-08T16:57:11Z</dc:date>
    </item>
    <item>
      <title>Re: Linux patch question</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596880#M40020</link>
      <description>You can see when it was last updated by looking at /var/log/yum.log, and "yum update" will tell you if the system is up to date or not.&lt;BR /&gt;&lt;BR /&gt;As far as I know there's not such thing as patch bundles in Redhat. Closest thing would be minor releases, but that's not really close anyway.&lt;BR /&gt;&lt;BR /&gt;If you want to get a tighter control over package versions installed on your servers you could set up your own local mirror of the RH repositories and make your servers pull their updates from there. Your mirror's snapshot of the RH repository would work as your "patch bundle", so to speak.</description>
      <pubDate>Mon, 08 Mar 2010 19:28:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596880#M40020</guid>
      <dc:creator>J. Maestre</dc:creator>
      <dc:date>2010-03-08T19:28:20Z</dc:date>
    </item>
    <item>
      <title>Re: Linux patch question</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596881#M40021</link>
      <description>Thanks for the reply - Does the yum update works on redhat as well as suse..?&lt;BR /&gt;Also does it give an info about what needs to be updated?&lt;BR /&gt;&lt;BR /&gt;Thanks Much Again</description>
      <pubDate>Mon, 08 Mar 2010 20:27:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596881#M40021</guid>
      <dc:creator>navin</dc:creator>
      <dc:date>2010-03-08T20:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: Linux patch question</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596882#M40022</link>
      <description>you can run&lt;BR /&gt;#rpm -qa --last&lt;BR /&gt;&lt;BR /&gt;It would list all the patched installed date wise.&lt;BR /&gt;&lt;BR /&gt;BR,&lt;BR /&gt;Kapil+</description>
      <pubDate>Tue, 09 Mar 2010 02:51:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596882#M40022</guid>
      <dc:creator>Kapil Jha</dc:creator>
      <dc:date>2010-03-09T02:51:19Z</dc:date>
    </item>
    <item>
      <title>Re: Linux patch question</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596883#M40023</link>
      <description>the following will check if there are packages to be updated&lt;BR /&gt;&lt;BR /&gt;# yum check-update&lt;BR /&gt;&lt;BR /&gt;# yum info 'package_name_here'&lt;BR /&gt;&lt;BR /&gt;yum info will tell you some more about the package.&lt;BR /&gt;&lt;BR /&gt;enjoy life.&lt;BR /&gt;&lt;BR /&gt;Jean-Pierre Huc</description>
      <pubDate>Tue, 09 Mar 2010 08:00:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596883#M40023</guid>
      <dc:creator>Huc_1</dc:creator>
      <dc:date>2010-03-09T08:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: Linux patch question</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596884#M40024</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;This may be more than you want, but it will work with redhat, tell you when packages were installed. &lt;BR /&gt;&lt;BR /&gt;Patching with RH replaces the binary and shows up as an rpm install with a new version.&lt;BR /&gt;&lt;BR /&gt;rpm -qa --queryformat '%{NAME}%{VERSION}%{RELEASE}.%{ARCH} %{installtime} (%{installtime:date})\n'&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 09 Mar 2010 13:55:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596884#M40024</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2010-03-09T13:55:29Z</dc:date>
    </item>
    <item>
      <title>Re: Linux patch question</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596885#M40025</link>
      <description>Hi ,&lt;BR /&gt;Thanks for your replies&lt;BR /&gt;&lt;BR /&gt;rpm -qa on redhat  as well as suse gave me an output like this&lt;BR /&gt;&lt;BR /&gt;Suse 10.1&lt;BR /&gt;patch-2.5.9-160.2&lt;BR /&gt;&lt;BR /&gt;Red 5&lt;BR /&gt;patch-2.5.4-29.2.2&lt;BR /&gt;&lt;BR /&gt;Red 3&lt;BR /&gt;patch-2.5.4-16&lt;BR /&gt;&lt;BR /&gt;Red 4&lt;BR /&gt;patch-2.5.4-20&lt;BR /&gt;&lt;BR /&gt;Are these output represemts the whole patch bundle installed on the system? also how and where do i get or know what would be the current release of the patches for these OS levels&lt;BR /&gt;&lt;BR /&gt;Your input is must respected and appreciated&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Mar 2010 14:48:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596885#M40025</guid>
      <dc:creator>navin</dc:creator>
      <dc:date>2010-03-09T14:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: Linux patch question</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596886#M40026</link>
      <description>What you are getting there are the installed versions of the "patch" package, which is a program to patchs files with diffs.&lt;BR /&gt;&lt;BR /&gt;You won't find one single package defining the patch level of the whole system, that only happens when you upgrade to the next minor (or major) version.&lt;BR /&gt;The only "patch level" you'll find in RedHat is in /etc/redhat-release. Other than that it's just per-package upgrades that you can check with yum.</description>
      <pubDate>Tue, 09 Mar 2010 15:08:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596886#M40026</guid>
      <dc:creator>J. Maestre</dc:creator>
      <dc:date>2010-03-09T15:08:31Z</dc:date>
    </item>
    <item>
      <title>Re: Linux patch question</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596887#M40027</link>
      <description>Thanks so much for this important info - i would like to find out if there is any new patches available than the installed ones for every OS i posted - is there a way to do that&lt;BR /&gt;&lt;BR /&gt;thank you so much</description>
      <pubDate>Tue, 09 Mar 2010 17:08:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596887#M40027</guid>
      <dc:creator>navin</dc:creator>
      <dc:date>2010-03-09T17:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: Linux patch question</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596888#M40028</link>
      <description>in other words is there a updated version of the below program available&lt;BR /&gt;&lt;BR /&gt;What you are getting there are the installed versions of the "patch" package, which is a program to patchs files with diffs.&lt;BR /&gt;&lt;BR /&gt;Thanks Much</description>
      <pubDate>Tue, 09 Mar 2010 17:10:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596888#M40028</guid>
      <dc:creator>navin</dc:creator>
      <dc:date>2010-03-09T17:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: Linux patch question</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596889#M40029</link>
      <description>As posted above already:&lt;BR /&gt;&lt;BR /&gt;-To check for updates for every package in the system:&lt;BR /&gt;# yum check-update&lt;BR /&gt;&lt;BR /&gt;-To check for updates for a single package:&lt;BR /&gt;# yum check-update |grep packagename&lt;BR /&gt;If you were looking for updates for the "patch" package:&lt;BR /&gt;# yum check-update |grep patch&lt;BR /&gt;&lt;BR /&gt;-To update the whole system:&lt;BR /&gt;# yum update&lt;BR /&gt;&lt;BR /&gt;-To update a single package:&lt;BR /&gt;# yum update packagename&lt;BR /&gt;&lt;BR /&gt;Refer to the yum documentation:&lt;BR /&gt;# man yum</description>
      <pubDate>Tue, 09 Mar 2010 18:33:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596889#M40029</guid>
      <dc:creator>J. Maestre</dc:creator>
      <dc:date>2010-03-09T18:33:19Z</dc:date>
    </item>
    <item>
      <title>Re: Linux patch question</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596890#M40030</link>
      <description>Thanks a lot</description>
      <pubDate>Tue, 09 Mar 2010 18:50:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596890#M40030</guid>
      <dc:creator>navin</dc:creator>
      <dc:date>2010-03-09T18:50:56Z</dc:date>
    </item>
    <item>
      <title>Re: Linux patch question</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596891#M40031</link>
      <description>Hi again,&lt;BR /&gt;&lt;BR /&gt;I believe the format command I gave will work for Suse.&lt;BR /&gt;&lt;BR /&gt;Note: yum installs will still show up on rpm -qa reports, yum is merely a very helpful front end for rpm.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 09 Mar 2010 19:33:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-patch-question/m-p/4596891#M40031</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2010-03-09T19:33:26Z</dc:date>
    </item>
  </channel>
</rss>

