<?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: how to install multiple rpm's + check kernel version? in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/how-to-install-multiple-rpm-s-check-kernel-version/m-p/2717131#M78465</link>
    <description>phew.. found the version to the kernel by:&lt;BR /&gt;&lt;BR /&gt;rpm -q kernel&lt;BR /&gt;&lt;BR /&gt;Anyone got any ideas on installing multiple rpms?&lt;BR /&gt;&lt;BR /&gt;ta,&lt;BR /&gt;&lt;BR /&gt;cx2</description>
    <pubDate>Sun, 05 May 2002 00:44:30 GMT</pubDate>
    <dc:creator>cx2</dc:creator>
    <dc:date>2002-05-05T00:44:30Z</dc:date>
    <item>
      <title>how to install multiple rpm's + check kernel version?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-install-multiple-rpm-s-check-kernel-version/m-p/2717130#M78464</link>
      <description>Hi everyone,&lt;BR /&gt;&lt;BR /&gt;I'm new to Linux (just installed Redhat 6.2 on a PC) but have some HP-UX experience, so please bare with me, as I have some probably very stupid questions!!&lt;BR /&gt;&lt;BR /&gt;First of all, I've downloaded some security patches from Redhat's website.  Can someone please tell me how to install multiple rpm's so that I don't have to do each one individually?&lt;BR /&gt;&lt;BR /&gt;Secondly, I would like to install LVM on this system, but have read that I need a specific version of kernel to do this.  How can I find out which version I have?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance for you help,&lt;BR /&gt;&lt;BR /&gt;cx2</description>
      <pubDate>Sat, 04 May 2002 23:58:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-install-multiple-rpm-s-check-kernel-version/m-p/2717130#M78464</guid>
      <dc:creator>cx2</dc:creator>
      <dc:date>2002-05-04T23:58:47Z</dc:date>
    </item>
    <item>
      <title>Re: how to install multiple rpm's + check kernel version?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-install-multiple-rpm-s-check-kernel-version/m-p/2717131#M78465</link>
      <description>phew.. found the version to the kernel by:&lt;BR /&gt;&lt;BR /&gt;rpm -q kernel&lt;BR /&gt;&lt;BR /&gt;Anyone got any ideas on installing multiple rpms?&lt;BR /&gt;&lt;BR /&gt;ta,&lt;BR /&gt;&lt;BR /&gt;cx2</description>
      <pubDate>Sun, 05 May 2002 00:44:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-install-multiple-rpm-s-check-kernel-version/m-p/2717131#M78465</guid>
      <dc:creator>cx2</dc:creator>
      <dc:date>2002-05-05T00:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: how to install multiple rpm's + check kernel version?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-install-multiple-rpm-s-check-kernel-version/m-p/2717132#M78466</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;First, to install multiple RPMs, I would suggest :&lt;BR /&gt;&lt;BR /&gt;for file in *.rpm&lt;BR /&gt;do&lt;BR /&gt;   rpm -Uvh $file&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;According to LVM, I would say : "if you don't know what you are doing, don't think about having LVM with RedHat !".&lt;BR /&gt;&lt;BR /&gt;LVM is not part of the RedHat distribution, so it may be difficult to make it runining.&lt;BR /&gt;However if you still want to do so :&lt;BR /&gt;&lt;BR /&gt;  * Download LVM patch for Linux 2.2 series from &lt;A href="http://www.sistina.com." target="_blank"&gt;www.sistina.com.&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;   * Patch and recompile the kernel, including the LVm functionality.&lt;BR /&gt;&lt;BR /&gt;   * Intall the user-space utilities (vgchange, vgscan, vgcreate...). You can download them from &lt;A href="http://rpmfind.net." target="_blank"&gt;http://rpmfind.net.&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If you need LVM, use Mandrake and SuSE.&lt;BR /&gt;&lt;BR /&gt;Good luck.&lt;BR /&gt;&lt;BR /&gt;Kodjo</description>
      <pubDate>Sun, 05 May 2002 11:28:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-install-multiple-rpm-s-check-kernel-version/m-p/2717132#M78466</guid>
      <dc:creator>Kodjo Agbenu</dc:creator>
      <dc:date>2002-05-05T11:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: how to install multiple rpm's + check kernel version?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-install-multiple-rpm-s-check-kernel-version/m-p/2717133#M78467</link>
      <description>installing multiple RPM's couldn't be easier.&lt;BR /&gt;&lt;BR /&gt;You can simply specify all rpm's on one line:&lt;BR /&gt;&lt;BR /&gt;for installing:&lt;BR /&gt;rpm -ivh &lt;FILE1&gt; &lt;FILE3&gt;... &lt;FILEN&gt;&lt;BR /&gt;&lt;BR /&gt;for upgrading:&lt;BR /&gt;rpm -Uvh &lt;FILE1&gt; &lt;FILE2&gt; &lt;FILE3&gt; ... &lt;FILEN&gt;&lt;BR /&gt;&lt;BR /&gt;rpm will install them in the right sequence. ofcourse this will not work if some rpm needs files included in an rpm you did not include (it will complain during the 'preperation' phase.&lt;BR /&gt;&lt;BR /&gt;you can alsways get a list of installed rpm's with:&lt;BR /&gt;&lt;BR /&gt;rpm -qa&lt;/FILEN&gt;&lt;/FILE3&gt;&lt;/FILE2&gt;&lt;/FILE1&gt;&lt;/FILEN&gt;&lt;/FILE3&gt;&lt;/FILE1&gt;</description>
      <pubDate>Mon, 06 May 2002 05:14:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-install-multiple-rpm-s-check-kernel-version/m-p/2717133#M78467</guid>
      <dc:creator>dirk dierickx</dc:creator>
      <dc:date>2002-05-06T05:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to install multiple rpm's + check kernel version?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-install-multiple-rpm-s-check-kernel-version/m-p/2717134#M78468</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;to install multiple rpm's in one go just run&lt;BR /&gt;&lt;BR /&gt;$ rpm -Uvh *.rpm&lt;BR /&gt;&lt;BR /&gt;You can find info about the installed kernel by issuing&lt;BR /&gt;&lt;BR /&gt;$ rpm -qi kernel&lt;BR /&gt;$ uname -a&lt;BR /&gt;&lt;BR /&gt;If you want to know if your kernel supports lvm just run&lt;BR /&gt;&lt;BR /&gt;$ cat /proc/devices | grep lvm&lt;BR /&gt;&lt;BR /&gt;But AFAIK RedHat does not use LVM.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;   Jochen</description>
      <pubDate>Mon, 06 May 2002 06:08:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-install-multiple-rpm-s-check-kernel-version/m-p/2717134#M78468</guid>
      <dc:creator>Jochen Heuer</dc:creator>
      <dc:date>2002-05-06T06:08:26Z</dc:date>
    </item>
  </channel>
</rss>

