Formatting SansDigital RAID5 external USB drive

svracer469

Honorable
Feb 12, 2013
7
0
10,510
I purchased a SansDigital TowerRAID TR4U+ 4 Bay external drive and installed four Seagate Barracude 3000GB sata drives. I set the external box to configure in RAID 5, downloaded the SansDigital utility for the initial RAID 5 Configuration. The SansDigital utility will see this device correctly, the Device Manager in XP will see the device in Hard Disks as H/W RAID 5 USB Drive but I cannot see this drive if I go to My Computer.
How do I reformat this drive in FAT32 so my Win XP, Ubuntu 10.04 and Xbox 360 can see this device? I have tried using Ridgecrop's fat32format utility but receive "error that it is unable to get partition info, GetLastError<>=1: Incorrect function"
 
Solution


There you have it. Ubuntu is seeing all 9TB. Sounds like your FAT32 is not able to see the full disk. I can't help with WinXP or Xbox but if you want to format it in Ubuntu run "mkfs -t ext4 /dev/sdb". That will delete everything on the current drive and create an ext4 partition. You can serve up the disk over your network from Ubuntu using CIFS. Search for CIFS for details on how to set that up.

**Edit** Make sure you umount /dev/sdb before running mkfs

FireWire2

Distinguished


With 4x 3TB in RAID5 you have a raid volume of 9TB, which XP wont and will not able access, due to 32bit limitation...
You do have TWO options:

1_ connect this to XP64 of later OS the format it as GPT then share the volume. it slows due to network connection

2_ Get and Install this http://www.paragon-software.com/technologies/components/gpt-loader/winXP.html

Then you can access HDD/Volume more than 2TB in your XP
 

FireWire2

Distinguished



With 4x 3TB in RAID5 you have a raid volume of 9TB, which XP wont and will not able access, due to 32bit limitation...
You do have TWO options:

1_ connect this to XP64 of later OS the format it as GPT then share the volume. it slows due to network connection

2_ Get and Install this http://www.paragon-software.com/technologies/components/gpt-loader/winXP.html

Then you can access HDD/Volume more than 2TB in your XP
 

svracer469

Honorable
Feb 12, 2013
7
0
10,510
Device Boot Start End Blocks Id System
/dev/sda1 * 1 9328 74927128 83 Linux
Warning: Partition 1 does not end on cylinder boundary.
/dev/sda2 9328 9730 3229065 5 Extended
Warning: Partition 2 does not end on cylinder boundary.
/dev/sda5 9328 9730 3229065 82 Linux swap
Warning: Partition 5 does not end on cylinder boundary.

Disk /dev/sdb: 9001 GB, 9001606602240 bytes
255 heads, 63 sectors/track, 1094383 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

sda1 is the Ubuntu 10.04 box
 

Nothing_But_NAS

Honorable
Nov 13, 2012
95
0
10,660


There you have it. Ubuntu is seeing all 9TB. Sounds like your FAT32 is not able to see the full disk. I can't help with WinXP or Xbox but if you want to format it in Ubuntu run "mkfs -t ext4 /dev/sdb". That will delete everything on the current drive and create an ext4 partition. You can serve up the disk over your network from Ubuntu using CIFS. Search for CIFS for details on how to set that up.

**Edit** Make sure you umount /dev/sdb before running mkfs
 
Solution