Slackware :: Intel ICH10R With 6xSATA RAID 5 With 1 Spare Disk?

Aug 4, 2010

I want to build a 6xSATA RAID 5 system with on of the disks as spare disk. I think this give me a chance of 2 of 6 disks failing without losing data. I am right? Hardware: Intel ICH10R First I will creat a 3xSATA RAID 5, after I will add the spare disk and after that I will add the others disks. This is what I think I should do.

[code].....

EDIT:I'm thinking in put LVM with the RAID 5. What are the advantages and disadvantages of it (LVM over RAID 5). It is safe? My MB (Asus P5Q) have Chipset Intel P45 ICH10R. What kind of RAID have it? Hardware RAID, fake RAID, BIOS RAID, software RAID? This are the specs of storage

[code].....

View 1 Replies


ADVERTISEMENT

General :: Setup RAID 5 And One Spare Disk

Aug 4, 2010

I want to build a 6xSATA RAID 5 system with on of the disks as spare disk. I think this give me a chance of 2 of 6 disks failing without losing data. I am right?
Hardware: Intel ICH10R
First I will creat a 3xSATA RAID 5, after I will add the spare disk and after that I will add the others disks. This is what I think I should do.

Step 1:
Create RAID Device
Code:
mdadm --create --verbose /dev/md0 --metadata 1.2 --level=5 --raid-devices=3 /dev/sda1 /dev/sdb1 /dev/sdc1
I read that "--metadata 1.2" is the best option. It is true?
Create filesystem on the RAID device

Using this method of calculation:
* chunk size = 128kB (for RAID 5)
* block size = 4kB (recommended for large files, and most of time)
* stride = chunk / block = 128kB / 4k = 32kB
* stripe-width = stride * ( (n disks in raid5) - 1 ) = 32kB * ( (5)- 1 ) = 32kB * 4 = 128kb
Then:
Code:
mkfs.ext3 -v -m .1 -b 4096 -E stride=32,stripe-width=128 /dev/md0

Step 2:
Add spare-disk
Code:
mdadm --add /dev/md0 /dev/sdd1
Is this enough?

Step 3:
Adding disks:
Code:
mdadm --add /dev/md0 /dev/sde1
mdadm --grow /dev/md0 --raid-devices=4
fsck.ext3 /dev/md0
resize2fs /dev/md0

View 1 Replies View Related

Ubuntu Servers :: RAID-5 Recovery (spare/active) / Degraded And Can't Create Raid ,auto Stop Raid [md1]?

Feb 1, 2011

Could any RAID gurus kindly assist me on the following RAID-5 issue?I have an mdadm-created RAID5 array consisting of 4 discs. One of the discs was dropping out, so I decided to replace it. Somehow, this went terribly wrong and I succeeded in marking two of the drives as faulty, and the re-adding them as spare.

Now the array is (logically) no longer able to start:

mdadm: Not enough devices to start the array.Degraded and can't create RAID ,auto stop RAID [md1]

I was able to examine the disks though:

Code:
root@127.0.0.1:/etc# mdadm --examine /dev/sdb2
/dev/sdb2:
Magic : a92b4efc
Version : 00.90.00
code....

Code:
mdadm --create --assume-clean --level=5 --raid-devices=4 /dev/sda2 /dev/sdb2 /dev/sdc2 /dev/sdd2
As I don't want to ruin the maybe small chance I have left to rescue my data, I would like to hear the input of this wise community.

View 4 Replies View Related

OpenSUSE Hardware :: RAID - ICH10R - 11.4 - Cannot Access It

Apr 18, 2011

I recently installed openSUSE 11.4 at my desktop (Core i7 930, X58 chipset). All has gone really well, but I have a problem with the RAID 1 array in my system. I have created a RAID 1 array using the ICH10R controller, but in openSUSE I cannot access it. The array only contains one NTFS partition.

In Partitioner (in YaST) it shows the RAID array as "md126" and the partition as "md126p1". As mount point it shows "/windows/C *". It's the only storage device that is shows the mount point with an asterisk.

View 1 Replies View Related

Hardware :: Dmraid + ICH10R RAID10: RAID Set Was Not Activated?

Jan 29, 2010

I'm trying to mount an existing SATA RAID 10 set on a Gigabyte EX58-DS4 (ICH10R "fake" RAID). dmraid is giving me the following:

Code:
root@CyberShadow:/home/vladimir# dmraid -b
/dev/sde: 1465149168 total, "3QK0782F"

[code]....

View 1 Replies View Related

OpenSUSE Install :: How Installer Of 11.3 Deals With INTEL ICH10R Fake RAID0

Jul 15, 2010

I have two 150GB WD Raptors stripped in an INTEL ICH10R RAID0 array. Windows 7 is installed on it in a 100GB partition, there is a 150GB secondary partition, a 100MB system reserved partition created by Windows 7 and there is about 25GB unallocated space to install a linux distribution.My problem is the fake ICH10R RAID which does work only at the moment for me with Fedora Core 13 : Ubuntu 10.04 breaks it but i do not like FC13 very much. So i Googled and Googled for installation problems on this fakeraid and dmraid is involved there is a bug in it at least in Ubuntu 10.04 and openSUSE 11.2, with 11.3 my RAID is detected -> i have a MD RAID popup.

My question is : How to install properly 11.3 on the space left on my fake RAID array without breaking anything although i have a full backup of my system. I don't understand anything of the partitioning part of openSUSE in general. Do i must activate MD RAID, i tried once and my NTFS partitions were not displayed but RAID was detected with the correct size. I am totally lost with this installer.

View 8 Replies View Related

Fedora Hardware :: 12 ICH10R RAID - Dracut - Add - Drivers Megasr File

Aug 3, 2010

I have an intel server board s5000vsa and would like to install fedora 12 on intel embedded raid 5 (fake raid). Have already read some stuff about it and found megasr driver, which seems to be used in rhel 5. I also managed to compile this driver and load it into the running kernel of the other F12 installation. Afterwards, I created new initramfs by issuing: dracut --add-drivers megasr <file>

when this intramfs boots and raid is set in bios, fedora 12 boots from /dev/dm-1. however, the driver loaded is ahci and *not* megasr (therefore only raid 1 works) How can I create initramfs that will load megasr at startup and not ahci? Preferably with dracut....

[Code]....

View 1 Replies View Related

Ubuntu Installation :: 11.04 Onto Spare HD, Broke Win7 On Raid?

May 3, 2011

I have a dell with win7 installed on two disks as raid0. I added a 3rd HD and installed 11.04 on to it. This boots ok but only Linux shows in the grub menu. Win7 is not there and I have no way to boot it as the installer put grub on disk0 of the raid overwriting the windows boot prog.

View 9 Replies View Related

Server :: Possible To Spin-Off Software RAID Spare Disks?

Jun 24, 2010

So, I have raid5 array with one spare disk. Is it possible to spin-off/shutdown the spare disk until one drive fails and the spare disk is needed?

View 1 Replies View Related

Server :: RAID 6 Array Coming Up With All Disks As Spare

Mar 25, 2011

I have been running a server with an increasingly large md array and always been plagued with intermittent disk faults. For a long time, I've attributed those to either temperature or power glitches. I had just embarked on a quest to a) lower case and drive temperature. They were running between 43 and 47C, sometimes peaking at 52C, so I've added more case fan power and made sure the drive cage was in the flow (it has it's own fan, too). Also, I've upgraded my power supply and made very sure that all the connectors are good. The array currently is a RAID6 with 5 Seagate 1,5TB drives.

When everything seemed to be working fine, I looked at my SMART logs and found that two of my drives (both well over 14000 operating hours) were showing uncorrectible bad blocks. Since it's RAID6, I figured, I couldn't do much harm, ran a badblocks test on it, zeroed the blocks that were reported bad, figuring the drive defect management would remap them to a good part of the disk and zeroed the superblock. I then added it back to the pack and the resync started. At around 50%, a second drive decided to go and shortly thereafter a third. Now, with two out of five drives, RAID6 will fail. Fine. At least, no data will be written to it anymore, however, now I cannot reassemble the array anymore.

Whenever I try I get this:
Code:
mdadm --assemble --scan
mdadm: /dev/md1 assembled from 2 drives and 2 spares - not enough to start the array

Code:
cat /proc/mdstat
Personalities : [raid0] [raid1] [raid6] [raid5] [raid4] [linear]
md1 : inactive sdf1[4](S) sde1[6](S) sdg1[1](S) sdh1[5](S) sdd1[2](S)
7325679320 blocks super 1.0
md0 : active raid1 sdb2[0] sdc2[1]
312464128 blocks [2/2] [UU]
bitmap: 3/149 pages [12KB], 1024KB chunk

Which is not fine. I'm sure that three devices are fine (normally, a failed device would just rejoin the array, skipping most of the resync by way of the bitmap) so I should be able to reassemble the array with the two good ones and the one that failed last, then add the one that failed during the resync and finally re-add the original offender. However, I have no idea how to get them out of the "(S)" state.

Code:
mdadm --examine /dev/sdd1
/dev/sdd1:
Magic : a92b4efc
Version : 1.0
Feature Map : 0x1
Array UUID : d79d81cc:fff69625:5fb4ab4c:46d45217 .....

View 2 Replies View Related

CentOS 5 Hardware :: Not Finding RAID 1 Hot Spare On Boot?

Apr 18, 2011

When I set up my current workstation (now at CentOS 5.6) I connected the two SATA drives in a RAID 1 configuration. Later, I realized I had a spare EIDE drive , so installed it, partitioned, and added it as a hot spare using "mdadm -a". So, now I have three disk drives doing the work of one.I updated /etc/mdadm.conf using the output from mdadm --examine --scan, and the resulting lines are:ARRAY /dev/md0 level=raid1 num-devices=2 UUID=1f00f847:088f27d2:dbdfa7d3:1daa2f4e spares=1ARRAY /dev/md1 level=raid1 num-devices=2 UUID=f500b9e9:890132f0:52434d8d:57e9fbfc spares=1I also updated the /boot/grub/device.map file to read:

(hd0) /dev/sda
(hd1) /dev/sdb
(hd2) /dev/hda

[code]....

View 4 Replies View Related

Ubuntu Installation :: 10.10 Install: Dmraid Doesn't See Second Disk Array On Ich10r?

Oct 11, 2010

I've googled my problem but I'm not sure I can find an answer in layman's terms. So here's my noob, simple question, please answer it in semi-noob-friendly terms I've been trying to install ubuntu for a while on my desktop pc. I gave it another go with 10.10 but I always have the same problem:

I've got two raid sets connected to an ich10r chip and they work fine in windows (2 samsung 1to + 2 raptors 75gb). Upon installation, dmraid only sets up the first raid set (Samsung array) but not the second one (Clean raptors intended for ubuntu). I don't have any other installation option, all my sata connectors are unavailable. So, is there a manual install solution? Can I force dmraid to mount the second raid set and not the first one? I think I read somewhere that this was a dmraid bug, but I can't find it anymore.

View 8 Replies View Related

Ubuntu Installation :: Moving An Existing System Disk To An ICH10R RAID1?

Mar 12, 2011

I've read many of the postings on ICH10R and grub but none seem to give me the info I need. Here's the situation: I've got an existing server on which I was running my RAID1 pair boot/root drive on an LSI based RAID chip; however there are system design issues I won't bore you with that mean I need to shift this RAID pair to the fakeraid (which happens to most reliably come up sda, etc). So far I've been able to configure the fakeraid pair as 'Adaptec' and build the RAID1 mirror with new drives; it shows up just fine in the BIOS where I want it.

Using a pre-prepared 'rescue' disk with lots of space, I dd'd the partitions from the old RAID device; then I rewired things, rebooted, fired up dmraid -ay and got the /dev/mapper/ddf1_SYS device. Using cfdisk, I set up three extended partitions to match the ones on the old RAID; mounted them; loopback mounted the images of the old partitions; then used rsync -aHAX to dup the system and home to the new RAID1 partitions. I then edited the /etc/fstab to change the UUID's; likewise the grub/menu.list (This is an older system that does not have the horror that is grub2 installed) I've taken a look at the existing initrd and believe it is all set up to deal with dmraid at boot. So that leaves only the grub install. Paranoid that I am, I tried to deal with this:

dmraid -ay
mount /dev/mapper/ddf1_SYS5 /newsys
cd /newsys

[code]....

and I get messages about 'does not have any corresponding BIOS drive'. I tried editing grub/device.conf, tried --recheck and any thing else I could think of, to no avail. I have not tried dd'ing an mbr to sector 0 yet as I am not really sure whether that will kill info set up by the fakeraid in the BIOS. I might also add that the two constituent drives show up as /dev/sda and /dev/sdb and trying to use either of those directly results in the same error messages from grub. Obviously this sort of thing is in the category of 'kids don't try this at home', but I have more than once manually put a unix disk together one file at a time, so much of the magic is not new to me.

View 2 Replies View Related

Software :: Grub Install On Spare Disk?

Feb 13, 2010

I copied my system disk to a spare disk. Both disks are listed in my BIOS "hard disk boot priority list".How do I install grub on the spare disk in order to boot from it when my system disk is no longer present or when I set my spare disk on top of the priority list ?

View 6 Replies View Related

Ubuntu Installation :: Rebuild Status Raid 1 Intel Isw Fakeraid Intel?

Oct 1, 2010

I have recently installed Ubuntu 10.04.1 lts server on my Intel "fakeraid" (software raid) (2x250 sata).To test my RAID 1 I turned off one HD and start the system.The first screen (Intel software screen) show Status = Degraded, but the system starts normally with just one HD.Then I turned off the system and turned on the HD again, so the first screen (Intel software screen) shows Status = Rebuild. If I enter in the software raid panel the folowing message is showed: "Volumes with "Rebuild" status will be rebuilt within the operating system"The system starts normally... but this message status stays permanently even I restart the system again

View 9 Replies View Related

Server :: Debian RAID 10 Spare Drives Versus Active Drives

Jun 9, 2011

so I setup a raid ten system and I was wondering what that difference between the active and spare drives is ? if I have 4 active drives then 2 the two stripes are then mirrored right?

root@wolfden:~# cat /proc/mdstat
Personalities : [raid0] [raid10]
md1 : active raid10 sda2[0] sdd2[3] sdc2[2] sdb2[1]

[code]....

View 2 Replies View Related

Slackware :: Windows Raid-O Install Virtualbox, Will Slackware Install Raid-o Without Raid Driver?

Feb 28, 2011

If I have a windows installed in raid-0, then install virtualbox and install all my linux os,s to virtualbox will they be a raid-0 install without needing to install raid drivers?

View 1 Replies View Related

Hardware :: Fedora 11 RAID 1 - Disk Failure - Boot From The Single Working Disk?

Oct 16, 2009

my Fedora 11 system is not starting anylonger. It stops with the message:

Code:

VFS: Can't find ext4 filesystem on dev dm-0

The system told me since a while, that a lot of the sectors of one disk of the (software) RAID compound are failed already. So tried to disconnect each of the disks and start them separately. Unfortunaltly this is not working (for one its is not working at all, the other wents the same far as with both), when I tried to recover the system with the Fedora DVD, it said no distribution found. I am quite new and do not know so much about linux system, so i do not know what further information you could need. Maybe it can be important, that both disks are encryped (the system wents so far, that I can type in the password).

View 2 Replies View Related

Ubuntu Servers :: HW RAID Disk Shows Up In Fstab But Not In /dev/disk/by-uuid?

Jun 28, 2010

I have an SiI hardware SATA RAID card, with two 500GB disks in mirrored RAID configuration. When I first plugged them in and set it up, things seemed to work ok, but on boot the raid controller told me that the RAID needed rebuilding, and it would happen automatically after POST. So I didn't worry about it, and the drive mounted fine, and it's been that way for years. I just went in and manually on-line rebuilt the RAID in the controller's BIOS, and now when I boot into Ubuntu, both disks show up in fdisk, but neither show up in /dev/disk/by-uuid. Am I missing something?

View 9 Replies View Related

Ubuntu Installation :: Migrate Working Single Disk System To Existing RAID Array Using Disk UUIDs

Aug 1, 2010

I had done a new lucid install to a 1 TB RAID 1 array using the alternate CD a few weeks back. I messed up that system trying to some hardware working that lucid doesn't have drivers for yet, so I gave up on it and reinstalled to a single 80 GB disk that I now want to move over to the RAID array.

I moved all of the existing files on the array to a single folder, then copied all of the folders from the 80 GB disk over to the array with permissions and symlinks (minus the contents of /proc and /sys, which I created empty).

These are the commands I used:

Quote:

p -a -d -R -v -t /media/raid_array /b*
cp -a -d -R -v -t /media/raid_array /d*
cp -a -d -R -v -t /media/raid_array /e*
cp -a -d -R -v -t /media/raid_array /h*

[Code]....

I tried to change fstab to use the 689a... for root, but when I try to boot, it's still trying to open /dev/disk/by-uuid/412d...

So then I booted from the single disk again and chrooted into the array, then ran update-initramfs -u. I got 3 "grep: /proc/modules: No such file or directory" errors, and "cat: /proc/cmdline: No such file or directory"- so I created directory /proc/modules, created an empty file /proc/cmdline, and ran the initramfs update again. Then I tried to shut down, which hung (probably because I was doing all of this from a terminal window in Gnome), so I killed the power after a couple of minutes.

It's still trying to use /dev/disk/by-uuid/412d... to boot.

What am I missing? I assume I just have to change the UUID to mount as root, but I don't know how.

View 2 Replies View Related

Fedora Installation :: Intel ICH RAID In BIOS - Use Or Not?

Jan 5, 2010

As I understand, Fedora 12 sets up Intel ICH (when set in BIOS) as mdraid instead of dmraid.I would like to setup my 2 SATA hard drives so ultimately my /boot partition is RAID1, my / (ROOT) partition is RAID 1, and my swap is either RAID0, or fstab referencing 2 partitions on 2 of the drives, both set with pri=0 (which supposedly is equivalent to striping of RAID0, performance wise).

Assuming Fedora 12 uses mdraid for my configuration in either instance, am I better of enabling, or disabling the RAID mode in the BIOS? This system is strictly Fedora--no dual booting, no Windows. Any performance gains; reliability benefits between either scenario?It's a Intel P35 motherboard with ICH9R. Storage configuration is either "AHCI" or "RAID"

I ran into some strange issues with dropping drives with the RAID set on in BIOS. When it was set, that gave me two md devices of md126 (RAID0, swap) and 127 (RAID1 split between / and /boot). I think I had md126p1 for the SWAP, and md127p1 for /boot and md127p2 for / Within purely software, i have:

/dev/sda1 RAID
/dev/sda2 swap
/dev/sda3 RAID

[code]...

I suppose unless the BIOS enabled RAID is supposed to be faster, I'll stick with a purely software route and keep the BIOS set to AHCI.

View 1 Replies View Related

Ubuntu Installation :: New 9.10 On A Machine With Intel Raid?

Jan 22, 2010

This question is going to flag me as being a bit green to Ubuntu, but I must confess that in 15+ years in I.T., I have never had such a hard time understanding the partitioning scheme. Here's where I'm at.

I installed from the 9.10 live CD and selected the option to use the entire disk. The system has an Intel raid controller built in to the motherboard and two 80GB hard drives in a mirrored configuration. The system has previously been used with both XP and FreeBSD and never had an issue with partitioning or, more importantly, getting the boot manager to work.

So the live CD partitioned my hard drives, installed all the software and mount points, and claims that everything is finished. When I reboot, no boot device is found. If I then boot again from the live CD and select the option to boot from the hard disk, it does and I am in fact typing this message from the system. However, nothing I can do will make the thing boot without the bloody CD.

I've spent hours trying to figure out how to make grub work, or how to fix the MBR but no luck. The drives don't show up as /dev/hda or as anything logical that I can discern, so I can't even construct a workable install-grub command. Doing a df gives me this:

[Code]...

which is not very informative, is it? FreeBSD was never such a pain to make boot.Frankly, I'm not very impressed that a clean install (non dual boot) on such a standard hardware configuration could be so difficult to make the boot loader work. Documentation on this subject is voluminous but very shabby. I have searched and searched and I cannot find any mention of hardware mirrored IDE or SATA drives, nor what dev they would show up as. Very frustrating. Every tutorial I've read on installing grub2 or grub just doesn't work, usually because the dev is not right.

Can anyone shed some light on this bizarre behavior and perhaps offer some advice that will allow me to boot this system without the use of a live CD?

View 1 Replies View Related

Ubuntu Installation :: RAID 5 (Intel) Not Recognized

Jun 21, 2010

I have a system with: - 1 SSD "boot" drive - 3 HDDs in RAID 5. I created my RAID 5 set in BIOS - P6X58D motherboard/Intel Software RAID - Looks and works fine in Windows 7 (Ultimate) 64-bit. I installed Ubuntu 10.04 using wubi - both Windows 7 and Ubuntu systems are on the SSD THE PROBLEM Ubuntu does not appear to recognize my RAID 5 set - when it loads I see a "/dev/sd_ 10 failed" error (sd_=sda, sdb or sdc) along with "no such file or directory" - I can see my 3 HDDs in 'Disk Utility,' but the space/partition information is incorrect - I reinstalled all packages related to RAID (dmraid, etc.)

View 7 Replies View Related

Ubuntu :: Installing In A Intel S875WP1-E With Raid?

Oct 29, 2010

I have a server with an Intel S875WP1-E motherboard and 4 HD of 400Gb each. If i use the raid utility from the motherboard it doesn't appear during disk detection, so i disabled it. I've rebooted and launch installer from the DVD and it displays correctly 4 HD. I've configured them, installed the OS and installed GRUB in MBR (grub install /dev/sda /dev/sdb /dev/sdc /dev/sdd). But when i reboot it asks me to switch for a correct system disk.

I've look into BIOS configuration. If i make a raid array using the bios utility, i can choose any array in boot device priority, but if there is no array defined, i can't select anythig (but the DVD drive).

View 1 Replies View Related

OpenSUSE Hardware :: 10.1 Driver For LSI RAID On Intel S3000AH

Feb 13, 2010

Short story: Correct driver for 10.1 for the raid on the Intel S3000AH board?
Long story: This system crashed due (I think) to a bad memory module, had been running fine for 2 years, had been an upgrade from Suse9. The hardware is fixed but I get "GRUB" repeating on the screen when booting and that is all. I can't seem to find opensuse drivers for 10.1 (that is what I believe is on the system, I believe the data is still intact and don't want to compromise it if possible) It will not load the 10.1 drivers from the intel site, presumably (?) because they are for SLES, not opensuse. I can boot from a 9.3 CD with the drivers from the intel site, and can see the original partitions.

View 1 Replies View Related

Ubuntu Installation :: Dual Boot On Intel Raid 0?

Mar 4, 2010

I set up an array of 2 hhd in raid0 using intel ICH7R, and i have a win7 installed on it. I'd like to have a dual boot with karmic, too. I googled a little bit and i found that it's not so easy as i thought. Are there anyone who's experiencing my same situation?

View 1 Replies View Related

Ubuntu :: Intel RAID Controller - Showing 2 Drives?

Apr 24, 2010

I shall start off by saying that I have just jumped from Windows 7 to Ubuntu and am not regretting the decision one bit. I am however stuck with a problem. I have spent a few hours google'ing this and have read some interesting articles (probably way beyond what the problem actually is) but still don't think I have found the answer.I have installed:

Distributor ID: Ubuntu
Description: Ubuntu lucid (development branch)
Release: 10.04
Codename: lucid

I am running the install on an old Dell 8400. My PC has an Intel RAID Controller built into the MB. I have 1 HDD (without RAID) (which is houses my OS install) and then I have 2 1TB drives (These are just NTFS formatted drives with binary files on them nothing more.) in a RAID 1 (Mirroring) Array. The Intel RAID Controller on Boot recognizes the Array as it always has (irrespective of which OS is installed) however, unlike Windows 7 (where I was able to install the Intel RAID controller driver) .Does anyone know of a resolution (which doesn't involve formatting and / or use of some other software RAID solution) - to get this working which my searches have not taken me too?

View 2 Replies View Related

Fedora Hardware :: RAID - Intel Matrix Storage Manager

Mar 28, 2010

I recently bought a new system that has an Intel Matrix Storage Manager "RAID controller" (ICH10R/DO) on it. I'm a bit baffled over what this really is. I see at [URL] that this controller is supported by the Linux dmraid and mdadm commands and supported in the 2.6 kernel version for quite a while. This looks as though it is some sort of convergence of a brain-dead hardware chipset that requires software installed in the OS to manage it. Kind of reminds me of the wimpy Windows modems of the past. How I deployed. I set up two Seagate ST31500541AS disks as a mirrored pair in the hardware controller interface (CTL-I setup after POST).

I installed Fedora 12 in the usual fashion, though was confusing considering I expected a single "RAID device" to be seen by Anaconda. I went ahead and set up the two native /dev/sda and /dev/sdb as a mirrored RAID device on installation (mdadm under the cover). Recently, Palimpsest is insisting that I have a disk problem with "Disk has many bad sectors" error on /dev/sdb. When I run "dmraid -s" it tells me that the meta device is OK and I see no hardware errors in the messages log. I'm not having kernel panics as others seem to have had on RHEL 5.x.

View 4 Replies View Related

Ubuntu Servers :: PCIe RAID Controller With 4 Intel SSDs?

Jan 12, 2011

I have been thinking about upgrading my RAID setup from a pair of Intel X25s running the software based RAID included with ubuntu to four Intel X25s running off a PCIe based controller. The controller is an HP P400 which I know works great on ubuntu (I have other machines running it with SAS drives). My desktop has an Intel S5000XVNSATAR mainboard and I have an open PCIe v1.0 8x (physical) slot that is wired 4x. The controller is 8x and will fit fine. How much of a performance hit do you think I will see running this 8x controller in the slot wired 4x with four Intel x25s in a RAID 10? Will I have enough bandwidth with the 4x for those SSD's?

View 4 Replies View Related

Fedora Installation :: 10 - Get To Select The Intel RAID Driver In The Install Process?

Jan 12, 2009

Installing new Intel server S5000VSA (Sapello) motherboard with RAID 1. Downloaded F10 32 bit DVD and run install. Everything works fine and select Samba and all that. Install completes but on reboot get a blank screen.

I know with Windows one has to load the RAID driver off the Intel driver CD, so guess that is the problem. But how do I do this in Fedora? Question: How do I get to select the Intel RAID driver in the install process? There does not seem to be any place to stop and make this selection. I tried selecting the Red Hat and Suze installs on the Intel configuration assistant but it then reboots and that is it. In Windows it would ask to insert the Intel driver CD but that does not happen. So I am stuck. I loaded Fedora some 3 year ago and like it but then it was not on a RAID setup. I created a VMWare install on my desktop and did the same install options and it works. So the DVD seems fine.

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved