<div dir="ltr">While I would love to see softraid in PVE but the developers seem to be dead set against it.<div><br></div><div><a href="http://pve.proxmox.com/wiki/Software_RAID">http://pve.proxmox.com/wiki/Software_RAID</a><br>

</div><div><a href="http://forum.proxmox.com/threads/398-New-features">http://forum.proxmox.com/threads/398-New-features</a><br></div><div><a href="http://forum.proxmox.com/threads/838-Install-on-Soft-Raid">http://forum.proxmox.com/threads/838-Install-on-Soft-Raid</a></div>

<div><a href="http://pve.proxmox.com/wiki/Storage_Model">http://pve.proxmox.com/wiki/Storage_Model</a><br></div><div><a href="http://forum.proxmox.com/threads/7112-Suggestion-integrate-block-level-SSD-caching-into-the-PVE-kernel">http://forum.proxmox.com/threads/7112-Suggestion-integrate-block-level-SSD-caching-into-the-PVE-kernel</a><br>

</div><div><br><div class="gmail_extra">That's not to say it hasn't been done with previous versions of Proxmox.</div><div class="gmail_extra"><br></div><div class="gmail_extra"><a href="http://www.howtoforge.com/proxmox-2-with-software-raid">http://www.howtoforge.com/proxmox-2-with-software-raid</a><br>

<a href="http://www.petercarrero.com/content/2012/04/22/adding-software-raid-proxmox-ve-20-install">http://www.petercarrero.com/content/2012/04/22/adding-software-raid-proxmox-ve-20-install</a></div><div class="gmail_extra">

<br></div><div class="gmail_extra" style>I haven't had a chance to try a custom install of PVE 3 on softraid (yet). I do intend on doing it when I get some free time (ha!). The devs seem pretty dead set against softraid and I'm not entirely clear why though they're much more experienced with their codebase, I'm sure they have their reasons. I haven't seen such an absolute attitude against softraid for years. Linux's softraid implementation(s) are notoriously stable and out perform hardware RAID on a regular basis. Also, many PVE users would like to install it on leased or colo boxes that either don't support or don't have room for an old school hardware RAID card. I personally am interested installing PVE on a leased box at OVH with dual 1 gig hard drives where they only support hardware RAID on extremely high end systems that are massive overkill for a personal server.</div>

<div class="gmail_extra" style><br></div><div class="gmail_extra" style>--adam</div><div class="gmail_extra" style><br></div><div class="gmail_extra" style><br></div><div class="gmail_extra" style><br></div><div class="gmail_extra">

<div class="gmail_quote">On Thu, Jul 4, 2013 at 11:16 AM, Gerald Brandt <span dir="ltr"><<a href="mailto:gbr@majentis.com" target="_blank">gbr@majentis.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">

<div><div style="font-size:12pt;font-family:arial,helvetica,sans-serif">Does anyone know the reasons behind that decision?<br><br>In my experience, Linux software RAID is exceptional in performance and stability.<br><br>
Gerald<br>
<br><br><hr><blockquote style="padding-left:5px;font-size:12pt;font-style:normal;margin-left:5px;font-family:Helvetica,Arial,sans-serif;text-decoration:none;font-weight:normal;border-left-width:2px;border-left-style:solid;border-left-color:rgb(16,16,255)">

<b>From: </b>"Adam Hunt" <<a href="mailto:voxadam@gmail.com" target="_blank">voxadam@gmail.com</a>><br><b>To: </b>"Paul Gray" <<a href="mailto:gray@cs.uni.edu" target="_blank">gray@cs.uni.edu</a>><br>

<b>Cc: </b><a href="mailto:pve-user@pve.proxmox.com" target="_blank">pve-user@pve.proxmox.com</a><br><b>Sent: </b>Thursday, July 4, 2013 12:46:58 PM<br><b>Subject: </b>Re: [PVE-User] md installer?<div><div class="h5"><br>

<br><div dir="ltr">My understanding was that PVE does not now and will never in the future support the softraid capabilities of Linux. If RAID is wanted than the only option is old-school hardware RAID.</div><div class="gmail_extra">



<br><br><div class="gmail_quote">On Thu, Jul 4, 2013 at 5:29 AM, Paul Gray <span dir="ltr"><<a href="mailto:gray@cs.uni.edu" target="_blank">gray@cs.uni.edu</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">



<div>On 07/04/2013 06:30 AM, Paul Gray wrote:<br>
> I think, I may be wrong, that the Barebone Installer is not customizable at all, and won't be.<br>
<br>
</div>The installer is configurable to the extent that any distribution's<br>
installer iso is configurable.  You just need to know where the<br>
installation components are and how they interact.<br>
<br>
The origin of my question to the list arises from the hints of md<br>
support already in the places within the installation.<br>
<br>
After ISOLINUX expands the initrd and finds its proxmox iso image, the<br>
init script invokes /sbin/unconfigured.sh on the ISO mount.<br>
<br>
In the final acts of /sbin/unconfigured.sh, there's a commented-out line<br>
to shut off md device md0, indicating that there was once a time when it<br>
was enabled.<br>
<br>
But there's quite a bit more: For example, after proxmox finds the<br>
installation media and starts up X, the installation contiues from<br>
openbox/.xinitrc to invoke /usr/bin/proxinstall.<br>
<br>
Within the /usr/bin/proxinstall script, one finds this code in the<br>
probing for disks:<br>
<br>
    foreach my $hd (@$hds) {<br>
        my ($disk, $devname) = @$hd;<br>
        next if $devname =~ m|^/dev/md\d+$|;<br>
        print "found Disk$disk N:$devname\n";<br>
    }<br>
<br>
So the installer is specifically excluding md devices when looking for<br>
disks.<br>
<br>
Naturally this begs the question of what would happen if one added<br>
modprobe's for md raid support (right after the modprobe of dm_mod in<br>
unconfigured.sh), removed the "next if..." line in the proxinstall<br>
script above, reconstituted the ISO, and booted it up to "see what happens."<br>
<br>
It seems that someone else had probably already done this.  If no one<br>
else has done it then it's likely someone would be willing to offer<br>
advice on why enabling support for md devices would be "a bad thing(tm)"<br>
or at least offer some insight as to why md devices are specifically<br>
avoided in the present installer.<br>
<div><div><br>
--<br>
Paul Gray                                         -o)<br>
314 East Gym, Dept. of Computer Science           /\\<br>
University of Northern Iowa                      _\_V<br>
 Message void if penguin violated ...  Don't mess with the penguin<br>
 No one says, "Hey, I can't read that ASCII attachment ya sent me."<br>
_______________________________________________<br>
pve-user mailing list<br>
<a href="mailto:pve-user@pve.proxmox.com" target="_blank">pve-user@pve.proxmox.com</a><br>
<a href="http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-user" target="_blank">http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-user</a><br>
</div></div></blockquote></div><br></div>
<br>_______________________________________________<br>pve-user mailing list<br><a href="mailto:pve-user@pve.proxmox.com" target="_blank">pve-user@pve.proxmox.com</a><br><a href="http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-user" target="_blank">http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-user</a><br>

</div></div></blockquote><br></div></div></blockquote></div><br></div></div></div>