<?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: raid configuration during installation in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/raid-configuration-during-installation/m-p/4116841#M31035</link>
    <description>RAID1 is OK, but you'll need to be careful with installing the bootloader (find the Software-RAID-HOWTO documents on the internet for more information). This is because a RAID1 partition more or less "looks like" a standard partition: the bootloader does not need to be specifically aware of RAID1 to be able to _read_ it. &lt;BR /&gt;&lt;BR /&gt;Writing would be more difficult, but fortunately a bootloader usually won't need to write anything to the disk while starting the system.&lt;BR /&gt;&lt;BR /&gt;RAID5 cannot be used as a boot partition, because a bootloader would then have to have a real RAID5 implementation to be able to understand the disk/partition contents. Even a simple implementation of RAID5 generally won't fit into a boot sector.&lt;BR /&gt;&lt;BR /&gt;As the disk's Master Boot Record is outside any partition, a partition-level Software RAID will not copy it automatically. Fortunately there is generally no need to change the Master Boot Record after setting it up once.&lt;BR /&gt;&lt;BR /&gt;I'd prefer using the "ms-sys" tool to install an "industry standard" (i.e. Microsoft-style) MBR code to both disks of the RAID1 set. Then each disk must have the /boot partition marked active using the fdisk tool. The boot loader will then be installed to the Partition Boot Record of the /boot partition(s).&lt;BR /&gt;&lt;BR /&gt;Some older documents prefer the LILO bootloader for RAID1 installations, but a modern GRUB works too, provided the installation is done carefully.&lt;BR /&gt;&lt;BR /&gt;Here are some instructions I found with a quick Googling of "GRUB RAID1":&lt;BR /&gt;&lt;A href="http://www.texsoft.it/index.php?c=hardware&amp;amp;m=hw.storage.grubraid1&amp;amp;l=it" target="_blank"&gt;http://www.texsoft.it/index.php?c=hardware&amp;amp;m=hw.storage.grubraid1&amp;amp;l=it&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;MK</description>
    <pubDate>Fri, 14 Dec 2007 12:52:01 GMT</pubDate>
    <dc:creator>Matti_Kurkela</dc:creator>
    <dc:date>2007-12-14T12:52:01Z</dc:date>
    <item>
      <title>raid configuration during installation</title>
      <link>https://community.hpe.com/t5/operating-system-linux/raid-configuration-during-installation/m-p/4116838#M31032</link>
      <description>I planned to install Linux "/"(root FS) onto software raided (RAID1) disks.&lt;BR /&gt;I have heard that the /boot must be on a separate traditional primary partition ? true ? if true then why ?&lt;BR /&gt;&lt;BR /&gt;e.g &lt;BR /&gt;/boot : /dev/sda1&lt;BR /&gt;swap (raid 1): /dev/sda5 and /dev/sdb5 &lt;BR /&gt;/ (raid 1): /dev/sda6 and /dev/sdb6&lt;BR /&gt;&lt;BR /&gt;if /boot cant be created on raid1 then this is problematic because in case of a disk(/dev/sda) failure the system may not boot even though our data and root system is safe.&lt;BR /&gt;&lt;BR /&gt;what you Gurus suggest/recommend ?&lt;BR /&gt;&lt;BR /&gt;Maaz</description>
      <pubDate>Fri, 14 Dec 2007 11:12:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/raid-configuration-during-installation/m-p/4116838#M31032</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2007-12-14T11:12:39Z</dc:date>
    </item>
    <item>
      <title>Re: raid configuration during installation</title>
      <link>https://community.hpe.com/t5/operating-system-linux/raid-configuration-during-installation/m-p/4116839#M31033</link>
      <description>This is where things get a bit tricky.&lt;BR /&gt;&lt;BR /&gt;If you are using Software RAID1, you can put the '/boot' ON the RAID volume.&lt;BR /&gt;&lt;BR /&gt;Once the machine is built, you need to do some grub trickery (grub-install) onto the 2nd hard-drive so in the event of a failure, you'll still be able to boot the system.&lt;BR /&gt;&lt;BR /&gt;Using any higher (5+) type of Software RAID will not work for this.  Just 0 &amp;amp; 1.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 14 Dec 2007 12:14:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/raid-configuration-during-installation/m-p/4116839#M31033</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2007-12-14T12:14:19Z</dc:date>
    </item>
    <item>
      <title>Re: raid configuration during installation</title>
      <link>https://community.hpe.com/t5/operating-system-linux/raid-configuration-during-installation/m-p/4116840#M31034</link>
      <description>You can use software RAID for /boot.&lt;BR /&gt;&lt;BR /&gt;The /boot/efi file system must be vfat for Itanium based servers.&lt;BR /&gt;&lt;BR /&gt;The /boot cannot be under the control of LVM.&lt;BR /&gt;&lt;BR /&gt;In your case, you can mirror all file systems.&lt;BR /&gt;&lt;BR /&gt;What you should do manually after the installation is install the grub boot loader into the MBR/active partition of the second disk.</description>
      <pubDate>Fri, 14 Dec 2007 12:15:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/raid-configuration-during-installation/m-p/4116840#M31034</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2007-12-14T12:15:29Z</dc:date>
    </item>
    <item>
      <title>Re: raid configuration during installation</title>
      <link>https://community.hpe.com/t5/operating-system-linux/raid-configuration-during-installation/m-p/4116841#M31035</link>
      <description>RAID1 is OK, but you'll need to be careful with installing the bootloader (find the Software-RAID-HOWTO documents on the internet for more information). This is because a RAID1 partition more or less "looks like" a standard partition: the bootloader does not need to be specifically aware of RAID1 to be able to _read_ it. &lt;BR /&gt;&lt;BR /&gt;Writing would be more difficult, but fortunately a bootloader usually won't need to write anything to the disk while starting the system.&lt;BR /&gt;&lt;BR /&gt;RAID5 cannot be used as a boot partition, because a bootloader would then have to have a real RAID5 implementation to be able to understand the disk/partition contents. Even a simple implementation of RAID5 generally won't fit into a boot sector.&lt;BR /&gt;&lt;BR /&gt;As the disk's Master Boot Record is outside any partition, a partition-level Software RAID will not copy it automatically. Fortunately there is generally no need to change the Master Boot Record after setting it up once.&lt;BR /&gt;&lt;BR /&gt;I'd prefer using the "ms-sys" tool to install an "industry standard" (i.e. Microsoft-style) MBR code to both disks of the RAID1 set. Then each disk must have the /boot partition marked active using the fdisk tool. The boot loader will then be installed to the Partition Boot Record of the /boot partition(s).&lt;BR /&gt;&lt;BR /&gt;Some older documents prefer the LILO bootloader for RAID1 installations, but a modern GRUB works too, provided the installation is done carefully.&lt;BR /&gt;&lt;BR /&gt;Here are some instructions I found with a quick Googling of "GRUB RAID1":&lt;BR /&gt;&lt;A href="http://www.texsoft.it/index.php?c=hardware&amp;amp;m=hw.storage.grubraid1&amp;amp;l=it" target="_blank"&gt;http://www.texsoft.it/index.php?c=hardware&amp;amp;m=hw.storage.grubraid1&amp;amp;l=it&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Fri, 14 Dec 2007 12:52:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/raid-configuration-during-installation/m-p/4116841#M31035</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2007-12-14T12:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: raid configuration during installation</title>
      <link>https://community.hpe.com/t5/operating-system-linux/raid-configuration-during-installation/m-p/4116842#M31036</link>
      <description>Stuart Browne &lt;BR /&gt;&amp;gt;If you are using Software RAID1, you can put the '/boot' ON&lt;BR /&gt;&amp;gt;the RAID volume.&lt;BR /&gt;&lt;BR /&gt;If I can put the /boot on the RAID1 Volume, then I think only two RAID 1 volumes should be enough, as:&lt;BR /&gt;/ (raid 1): /dev/sda1, /dev/sdb1&lt;BR /&gt;swap (raid 1): /dev/sda2, /dev/sdb2&lt;BR /&gt;i.e no need to create /boot on a separate/different RAID Volume. Right or wrong please suggest?&lt;BR /&gt;&lt;BR /&gt;&amp;gt;Once the machine is built, you need to do some grub trickery&lt;BR /&gt;&amp;gt;(grub-install) onto the 2nd hard-drive&lt;BR /&gt;&lt;BR /&gt;which one is correct 1{a,b} or 2{a,b} ?&lt;BR /&gt;1a) grub-install /dev/sda&lt;BR /&gt;1b) grub-install /dev/sdb&lt;BR /&gt;        OR&lt;BR /&gt;2a) grub-install /dev/sda1&lt;BR /&gt;2b) grub-install /dev/sdb1&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Maaz</description>
      <pubDate>Sat, 15 Dec 2007 14:15:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/raid-configuration-during-installation/m-p/4116842#M31036</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2007-12-15T14:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: raid configuration during installation</title>
      <link>https://community.hpe.com/t5/operating-system-linux/raid-configuration-during-installation/m-p/4116843#M31037</link>
      <description>&amp;gt;&amp;gt; If I can put the /boot on the RAID1 Volume, then I think only two RAID 1 volumes should be enough, as:&lt;BR /&gt;/ (raid 1): /dev/sda1, /dev/sdb1&lt;BR /&gt;swap (raid 1): /dev/sda2, /dev/sdb2&lt;BR /&gt;i.e no need to create /boot on a separate/different RAID Volume. Right or wrong please suggest?&lt;BR /&gt;&lt;BR /&gt;Yes, there is no need, but remember to keep file systems separated according to their usage, this provides flexibility and isolation. For example, data and logs system should not be on / because can fill the file system and create a lot of problems.&lt;BR /&gt;&lt;BR /&gt;I'm used to create a /boot separated of about 150 MB.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;Once the machine is built, you need to do some grub trickery&lt;BR /&gt;&amp;gt;(grub-install) onto the 2nd hard-drive&lt;BR /&gt;&lt;BR /&gt;At grub prompt (press c), type:&lt;BR /&gt;&lt;BR /&gt;grub&amp;gt; root (hd1,0)&lt;BR /&gt;grub&amp;gt; setup (hd1)</description>
      <pubDate>Mon, 17 Dec 2007 14:08:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/raid-configuration-during-installation/m-p/4116843#M31037</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2007-12-17T14:08:51Z</dc:date>
    </item>
  </channel>
</rss>

