<?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: installing redhat via pxe .... in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/installing-redhat-via-pxe/m-p/3339845#M13362</link>
    <description>Yep, basically. See my answer to your other question about the right driver in the initrd.img file (basically download it from HP):&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h18023.www1.hp.com/support/files/server/us/download/19403.html" target="_blank"&gt;http://h18023.www1.hp.com/support/files/server/us/download/19403.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I'm using PXE to load grub (compiled for the proper network driver) which gives me a chance to select from multiple options.  Of course I haven't tested this with the gigabit drivers, so you it might not work for you. :(&lt;BR /&gt;&lt;BR /&gt;Here is my dhcpd.conf file (I sanitized the numbers, so there might be some syntax errors created by that):&lt;BR /&gt;&lt;BR /&gt;deny unknown-clients;&lt;BR /&gt;not authoritative;&lt;BR /&gt; &lt;BR /&gt;option domain-name              "my.domain.com";&lt;BR /&gt;option domain-name-servers      192.168.1.2, 192.168.1.3;&lt;BR /&gt;option subnet-mask              255.255.255.0;&lt;BR /&gt; &lt;BR /&gt;allow bootp;&lt;BR /&gt;allow booting;&lt;BR /&gt; &lt;BR /&gt;option ip-forwarding    false;  # No IP forwarding&lt;BR /&gt;option mask-supplier    false;  # Don't respond to ICMP Mask req&lt;BR /&gt;ddns-update-style ad-hoc;&lt;BR /&gt; &lt;BR /&gt;subnet 192.168.1.0 netmask 255.255.255.0 {&lt;BR /&gt;  option routers       192.168.1.1;&lt;BR /&gt;}&lt;BR /&gt; &lt;BR /&gt;group {&lt;BR /&gt;  next-server 192.168.1.4;          # name of your TFTP server&lt;BR /&gt;  filename "pxegrub";        # name of the bootloader program&lt;BR /&gt; &lt;BR /&gt;  host node1 {&lt;BR /&gt;        hardware ethernet 00:01:02:03:04:05;&lt;BR /&gt;        fixed-address 192.168.1.5;&lt;BR /&gt;  }&lt;BR /&gt;  host node2 {&lt;BR /&gt;        hardware ethernet 00:01:02:03:04:06;&lt;BR /&gt;        fixed-address 192.168.1.6;&lt;BR /&gt;  }&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;Then here is my /tftpboot/grub/boot/menu.lst file:&lt;BR /&gt;&lt;BR /&gt;default=0&lt;BR /&gt;#timeout=10&lt;BR /&gt;title Bogus Safety Image&lt;BR /&gt;        root (hda0,0)&lt;BR /&gt;        kernel /vmlinuz&lt;BR /&gt;        initrd /initrd.img&lt;BR /&gt;title Oops, I wanted to boot off the hard drive.  Please try booting from (hd0)&lt;BR /&gt;        root (hd0)&lt;BR /&gt;        chainloader +1&lt;BR /&gt;title Fedore Core 2 Rescue Image&lt;BR /&gt;        root (nd)&lt;BR /&gt;        kernel /vmlinuz rescue&lt;BR /&gt;        initrd /initrd.img&lt;BR /&gt;title Fedore Core 2 Text Install&lt;BR /&gt;        root (nd)&lt;BR /&gt;        kernel /vmlinuz text&lt;BR /&gt;        initrd /initrd.img&lt;BR /&gt;&lt;BR /&gt;Hopefully this make sense.&lt;BR /&gt;</description>
    <pubDate>Fri, 23 Jul 2004 15:03:34 GMT</pubDate>
    <dc:creator>Bryce Wade</dc:creator>
    <dc:date>2004-07-23T15:03:34Z</dc:date>
    <item>
      <title>installing redhat via pxe ....</title>
      <link>https://community.hpe.com/t5/operating-system-linux/installing-redhat-via-pxe/m-p/3339844#M13361</link>
      <description>All,&lt;BR /&gt;I am trying to install redhat 8.0 via pxe, but it failed on inserting NIC driver for the Tigon 3 (BCM9570A46). I believe this is 100/1000 bit NIC.&lt;BR /&gt;&lt;BR /&gt;Since all I need for pxe boot is vmlinux with corresponding initrd that loads the correct tg3 driver, then I can roll my own correct?</description>
      <pubDate>Fri, 23 Jul 2004 09:55:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/installing-redhat-via-pxe/m-p/3339844#M13361</guid>
      <dc:creator>K.C. Chan</dc:creator>
      <dc:date>2004-07-23T09:55:07Z</dc:date>
    </item>
    <item>
      <title>Re: installing redhat via pxe ....</title>
      <link>https://community.hpe.com/t5/operating-system-linux/installing-redhat-via-pxe/m-p/3339845#M13362</link>
      <description>Yep, basically. See my answer to your other question about the right driver in the initrd.img file (basically download it from HP):&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h18023.www1.hp.com/support/files/server/us/download/19403.html" target="_blank"&gt;http://h18023.www1.hp.com/support/files/server/us/download/19403.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I'm using PXE to load grub (compiled for the proper network driver) which gives me a chance to select from multiple options.  Of course I haven't tested this with the gigabit drivers, so you it might not work for you. :(&lt;BR /&gt;&lt;BR /&gt;Here is my dhcpd.conf file (I sanitized the numbers, so there might be some syntax errors created by that):&lt;BR /&gt;&lt;BR /&gt;deny unknown-clients;&lt;BR /&gt;not authoritative;&lt;BR /&gt; &lt;BR /&gt;option domain-name              "my.domain.com";&lt;BR /&gt;option domain-name-servers      192.168.1.2, 192.168.1.3;&lt;BR /&gt;option subnet-mask              255.255.255.0;&lt;BR /&gt; &lt;BR /&gt;allow bootp;&lt;BR /&gt;allow booting;&lt;BR /&gt; &lt;BR /&gt;option ip-forwarding    false;  # No IP forwarding&lt;BR /&gt;option mask-supplier    false;  # Don't respond to ICMP Mask req&lt;BR /&gt;ddns-update-style ad-hoc;&lt;BR /&gt; &lt;BR /&gt;subnet 192.168.1.0 netmask 255.255.255.0 {&lt;BR /&gt;  option routers       192.168.1.1;&lt;BR /&gt;}&lt;BR /&gt; &lt;BR /&gt;group {&lt;BR /&gt;  next-server 192.168.1.4;          # name of your TFTP server&lt;BR /&gt;  filename "pxegrub";        # name of the bootloader program&lt;BR /&gt; &lt;BR /&gt;  host node1 {&lt;BR /&gt;        hardware ethernet 00:01:02:03:04:05;&lt;BR /&gt;        fixed-address 192.168.1.5;&lt;BR /&gt;  }&lt;BR /&gt;  host node2 {&lt;BR /&gt;        hardware ethernet 00:01:02:03:04:06;&lt;BR /&gt;        fixed-address 192.168.1.6;&lt;BR /&gt;  }&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;Then here is my /tftpboot/grub/boot/menu.lst file:&lt;BR /&gt;&lt;BR /&gt;default=0&lt;BR /&gt;#timeout=10&lt;BR /&gt;title Bogus Safety Image&lt;BR /&gt;        root (hda0,0)&lt;BR /&gt;        kernel /vmlinuz&lt;BR /&gt;        initrd /initrd.img&lt;BR /&gt;title Oops, I wanted to boot off the hard drive.  Please try booting from (hd0)&lt;BR /&gt;        root (hd0)&lt;BR /&gt;        chainloader +1&lt;BR /&gt;title Fedore Core 2 Rescue Image&lt;BR /&gt;        root (nd)&lt;BR /&gt;        kernel /vmlinuz rescue&lt;BR /&gt;        initrd /initrd.img&lt;BR /&gt;title Fedore Core 2 Text Install&lt;BR /&gt;        root (nd)&lt;BR /&gt;        kernel /vmlinuz text&lt;BR /&gt;        initrd /initrd.img&lt;BR /&gt;&lt;BR /&gt;Hopefully this make sense.&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Jul 2004 15:03:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/installing-redhat-via-pxe/m-p/3339845#M13362</guid>
      <dc:creator>Bryce Wade</dc:creator>
      <dc:date>2004-07-23T15:03:34Z</dc:date>
    </item>
  </channel>
</rss>

