<?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 GRUB configuration in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/grub-configuration/m-p/3531028#M70170</link>
    <description>Hi! everybody&lt;BR /&gt;&lt;BR /&gt; I have installed Rdhat Linux 8.0 on primary master HDD .&lt;BR /&gt;&lt;BR /&gt;  I have windows 2k professional on Primary slave . &lt;BR /&gt;&lt;BR /&gt;Now I want to have a menu at the system boot time, from which I can choose the OS of my choice.&lt;BR /&gt; &lt;BR /&gt;I have added the following lines in /boot/grub/menu.lst&lt;BR /&gt;&lt;BR /&gt;title windows 2k&lt;BR /&gt;rootnoverify (hd1,0)&lt;BR /&gt;chainloader +1&lt;BR /&gt;&lt;BR /&gt;It shows the options , but doesn't boot 2k professional .&lt;BR /&gt;&lt;BR /&gt;Any kind of help will be highly appreciated.&lt;BR /&gt;&lt;BR /&gt;thanks &amp;amp; regards&lt;BR /&gt;&lt;BR /&gt;Shyam&lt;BR /&gt;</description>
    <pubDate>Mon, 25 Apr 2005 06:22:40 GMT</pubDate>
    <dc:creator>shyam singh bisht</dc:creator>
    <dc:date>2005-04-25T06:22:40Z</dc:date>
    <item>
      <title>GRUB configuration</title>
      <link>https://community.hpe.com/t5/operating-system-linux/grub-configuration/m-p/3531028#M70170</link>
      <description>Hi! everybody&lt;BR /&gt;&lt;BR /&gt; I have installed Rdhat Linux 8.0 on primary master HDD .&lt;BR /&gt;&lt;BR /&gt;  I have windows 2k professional on Primary slave . &lt;BR /&gt;&lt;BR /&gt;Now I want to have a menu at the system boot time, from which I can choose the OS of my choice.&lt;BR /&gt; &lt;BR /&gt;I have added the following lines in /boot/grub/menu.lst&lt;BR /&gt;&lt;BR /&gt;title windows 2k&lt;BR /&gt;rootnoverify (hd1,0)&lt;BR /&gt;chainloader +1&lt;BR /&gt;&lt;BR /&gt;It shows the options , but doesn't boot 2k professional .&lt;BR /&gt;&lt;BR /&gt;Any kind of help will be highly appreciated.&lt;BR /&gt;&lt;BR /&gt;thanks &amp;amp; regards&lt;BR /&gt;&lt;BR /&gt;Shyam&lt;BR /&gt;</description>
      <pubDate>Mon, 25 Apr 2005 06:22:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/grub-configuration/m-p/3531028#M70170</guid>
      <dc:creator>shyam singh bisht</dc:creator>
      <dc:date>2005-04-25T06:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: GRUB configuration</title>
      <link>https://community.hpe.com/t5/operating-system-linux/grub-configuration/m-p/3531029#M70171</link>
      <description>If you need to boot Win from a non-first disk, try to exchange BIOS drives virtually, like this:&lt;BR /&gt;&lt;BR /&gt;menu.lst&lt;BR /&gt;------------------&lt;BR /&gt;...&lt;BR /&gt;title windows 2k&lt;BR /&gt;map (hd1) (hd0)&lt;BR /&gt;rootnoverify (hd1,0)&lt;BR /&gt;chainloader +1&lt;BR /&gt;makeactive&lt;BR /&gt;...&lt;BR /&gt;------------------&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sergejs&lt;BR /&gt;</description>
      <pubDate>Mon, 25 Apr 2005 07:25:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/grub-configuration/m-p/3531029#M70171</guid>
      <dc:creator>Sergejs Svitnevs</dc:creator>
      <dc:date>2005-04-25T07:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: GRUB configuration</title>
      <link>https://community.hpe.com/t5/operating-system-linux/grub-configuration/m-p/3531030#M70172</link>
      <description>I have found the best practice is.&lt;BR /&gt;&lt;BR /&gt;Have W2K running first, preferably limited to a single drive/partition.&lt;BR /&gt;&lt;BR /&gt;Then install Linux, use grub as the boot loader.&lt;BR /&gt;&lt;BR /&gt;It will set up and let you run W2K no problems. You can rename the entry for windows to make it clearer.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 26 Apr 2005 02:57:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/grub-configuration/m-p/3531030#M70172</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-04-26T02:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: GRUB configuration</title>
      <link>https://community.hpe.com/t5/operating-system-linux/grub-configuration/m-p/3531031#M70173</link>
      <description>Did you add the default parameter?&lt;BR /&gt;i.e. "default 1"&lt;BR /&gt;&lt;BR /&gt;# Boot automatically after ten seconds&lt;BR /&gt;timeout 10&lt;BR /&gt;&lt;BR /&gt;# Default OS is the second record.&lt;BR /&gt;default 1&lt;BR /&gt;&lt;BR /&gt;# Fallback to the first record.&lt;BR /&gt;fallback 0&lt;BR /&gt;&lt;BR /&gt;# For the girlies:&lt;BR /&gt;title Windows 2000 &lt;BR /&gt;unhide (hd0,0)&lt;BR /&gt;hide (hd0,1)&lt;BR /&gt;hide (hd0,2)&lt;BR /&gt;rootnoverify (hd0,0)&lt;BR /&gt;chainloader +1&lt;BR /&gt;makeactive&lt;BR /&gt;&lt;BR /&gt;# Booting your favo OS:&lt;BR /&gt;title  Linux&lt;BR /&gt;root (hd0,7)&lt;BR /&gt;kernel /boot/vmlinuz-2.2.17 root=/dev/hda8 video=matrox:vesa:261&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;Renarios</description>
      <pubDate>Tue, 26 Apr 2005 04:12:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/grub-configuration/m-p/3531031#M70173</guid>
      <dc:creator>renarios</dc:creator>
      <dc:date>2005-04-26T04:12:45Z</dc:date>
    </item>
  </channel>
</rss>

