I have a Dell powerapp server, an adaptec AIC card (not sure on specific model) hooked up to a Dell enclosure with 11 SCSI drives in it. 11 (drives) +1 (enclosure is detected) + 1 (Controller) is 14, so I should be good there...
problem is creating my software raid drive. I am running the following command:
debian:~# mdadm --create --verbose /dev/md0 --level=5 --raid-devices=10 /dev/sdb1 /dev/sdc1 /dev/sdd1 /dev/sde1 /dev/sdf1 /dev/sdg1 /dev/sdh1 /dev/sdi1 /dev/sdj1 /dev/sdk1 --spare-devices=1 /dev/sdl1
and I get the following output
mdadm: layout defaults to left-symmetric
mdadm: chunk size defaults to 64K
mdadm: /dev/sdb1 appears to contain an ext2fs file system
size=355597440K mtime=Wed Oct 4 06:35:51 2006
mdadm: /dev/sdb1 appears to be part of a raid array:
level=5 devices=11 ctime=Wed Oct 4 06:32:10 2006
mdadm: /dev/sdc1 appears to be part of a raid array:
level=5 devices=11 ctime=Wed Oct 4 06:32:10 2006
mdadm: /dev/sdd1 appears to be part of a raid array:
level=5 devices=11 ctime=Wed Oct 4 06:32:10 2006
mdadm: /dev/sde1 appears to be part of a raid array:
level=5 devices=11 ctime=Wed Oct 4 06:32:10 2006
mdadm: /dev/sdf1 appears to be part of a raid array:
level=5 devices=11 ctime=Wed Oct 4 06:32:10 2006
mdadm: /dev/sdg1 appears to be part of a raid array:
level=5 devices=11 ctime=Wed Oct 4 06:32:10 2006
mdadm: /dev/sdh1 appears to be part of a raid array:
level=5 devices=11 ctime=Wed Oct 4 06:32:10 2006
mdadm: /dev/sdi1 appears to contain an ext2fs file system
size=33591880K mtime=Wed Oct 4 11:00:22 2006
mdadm: /dev/sdj1 appears to contain an ext2fs file system
size=33591880K mtime=Wed Oct 4 11:00:22 2006
mdadm: /dev/sdk1 appears to contain an ext2fs file system
size=33591880K mtime=Wed Oct 4 11:00:22 2006
mdadm: /dev/sdl1 appears to contain an ext2fs file system
size=33591880K mtime=Wed Oct 4 11:00:22 2006
mdadm: size set to 35559744K
Continue creating array? y
mdadm: SET_ARRAY_INFO failed for /dev/md0: Device or resource busy
debian:~#
why would it se /dev/sdi as ext2?
debian:~# fdisk -l /dev/sdi
Disk /dev/sdi: 36.4 GB, 36419584000 bytes
255 heads, 63 sectors/track, 4427 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdi1 1 4427 35559846 fd Linux raid autodetect
debian:~#
changing to 9 disks and removing /dev/sdi1 just changes the error /dev/sdj1
default deb install, no raidtools2, I had to create the /dev/sd(i, j, k, l) devices, (installed without array connected) mknod /dev/sdi b 8 0 (iirc). I also did an mknod /dev/sdi1 b 8 1 (maybe this is what caused the problem?)
problem is creating my software raid drive. I am running the following command:
debian:~# mdadm --create --verbose /dev/md0 --level=5 --raid-devices=10 /dev/sdb1 /dev/sdc1 /dev/sdd1 /dev/sde1 /dev/sdf1 /dev/sdg1 /dev/sdh1 /dev/sdi1 /dev/sdj1 /dev/sdk1 --spare-devices=1 /dev/sdl1
and I get the following output
mdadm: layout defaults to left-symmetric
mdadm: chunk size defaults to 64K
mdadm: /dev/sdb1 appears to contain an ext2fs file system
size=355597440K mtime=Wed Oct 4 06:35:51 2006
mdadm: /dev/sdb1 appears to be part of a raid array:
level=5 devices=11 ctime=Wed Oct 4 06:32:10 2006
mdadm: /dev/sdc1 appears to be part of a raid array:
level=5 devices=11 ctime=Wed Oct 4 06:32:10 2006
mdadm: /dev/sdd1 appears to be part of a raid array:
level=5 devices=11 ctime=Wed Oct 4 06:32:10 2006
mdadm: /dev/sde1 appears to be part of a raid array:
level=5 devices=11 ctime=Wed Oct 4 06:32:10 2006
mdadm: /dev/sdf1 appears to be part of a raid array:
level=5 devices=11 ctime=Wed Oct 4 06:32:10 2006
mdadm: /dev/sdg1 appears to be part of a raid array:
level=5 devices=11 ctime=Wed Oct 4 06:32:10 2006
mdadm: /dev/sdh1 appears to be part of a raid array:
level=5 devices=11 ctime=Wed Oct 4 06:32:10 2006
mdadm: /dev/sdi1 appears to contain an ext2fs file system
size=33591880K mtime=Wed Oct 4 11:00:22 2006
mdadm: /dev/sdj1 appears to contain an ext2fs file system
size=33591880K mtime=Wed Oct 4 11:00:22 2006
mdadm: /dev/sdk1 appears to contain an ext2fs file system
size=33591880K mtime=Wed Oct 4 11:00:22 2006
mdadm: /dev/sdl1 appears to contain an ext2fs file system
size=33591880K mtime=Wed Oct 4 11:00:22 2006
mdadm: size set to 35559744K
Continue creating array? y
mdadm: SET_ARRAY_INFO failed for /dev/md0: Device or resource busy
debian:~#
why would it se /dev/sdi as ext2?
debian:~# fdisk -l /dev/sdi
Disk /dev/sdi: 36.4 GB, 36419584000 bytes
255 heads, 63 sectors/track, 4427 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdi1 1 4427 35559846 fd Linux raid autodetect
debian:~#
changing to 9 disks and removing /dev/sdi1 just changes the error /dev/sdj1
default deb install, no raidtools2, I had to create the /dev/sd(i, j, k, l) devices, (installed without array connected) mknod /dev/sdi b 8 0 (iirc). I also did an mknod /dev/sdi1 b 8 1 (maybe this is what caused the problem?)