NTFS RAID-0 Recovery with Linux (healthy drives)

cyber_punk

Reputable
Apr 16, 2015
3
0
4,510
Hi!
Computer died (motherboard to be exact) and now I have 2x Seagate 320GB SATA drives, that were setup as RAID-0 (I don't know if the RAID was created with BIOS or Windows). I'm trying to mount the RAID array in a Kali Linux environment with both drives in USB3 DuoDockX.
This is where I'm now...
$fdisk -l:
Disk /dev/sda: 120.0 GB, 120034123776 bytes
255 heads, 63 sectors/track, 14593 cylinders, total 234441648 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000

Device Boot Start End Blocks Id System
/dev/sda1 1 234441647 117220823+ ee GPT

Disk /dev/sdb: 320.1 GB, 320072933376 bytes
255 heads, 63 sectors/track, 38913 cylinders, total 625142448 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xe6fbecea

Device Boot Start End Blocks Id System
/dev/sdb1 * 2048 614402047 307200000 7 HPFS/NTFS/exFAT

Disk /dev/sdd: 64.0 GB, 64021856256 bytes
179 heads, 32 sectors/track, 21830 cylinders, total 125042688 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x34b1494d

Device Boot Start End Blocks Id System
/dev/sdd1 * 64 5854015 2926976 17 Hidden HPFS/NTFS
/dev/sdd2 5854016 5983103 64544 1 FAT12
/dev/sdd3 5983104 125042687 59529792 83 Linux

Disk /dev/sdc: 320.1 GB, 320072933376 bytes
255 heads, 63 sectors/track, 38913 cylinders, total 625142448 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x362590b6

Device Boot Start End Blocks Id System
/dev/sdc1 * 2048 206847 102400 7 HPFS/NTFS/exFAT
/dev/sdc2 206848 1250273279 625033216 7 HPFS/NTFS/exFAT

$mdadm --examine /dev/sd[bc]
/dev/sdb:
Magic : Intel Raid ISM Cfg Sig.
Version : 1.0.00
Orig Family : b4c0480b
Family : b4c0480b
Generation : 000008f3
Attributes : All supported
UUID : 836624b9:315b2a09:eb3596b0:09e8a73c
Checksum : 5e809a03 correct
MPB Sectors : 1
Disks : 2
RAID Devices : 1

[Local RAID 0]:
UUID : cb5a3287:6318d5ac:b8be4745:bd0b5112
RAID Level : 0
Members : 2
Slots : [UU]
Failed disk : none
This Slot : ?
Array Size : 1250275328 (596.18 GiB 640.14 GB)
Per Dev Size : 625137923 (298.09 GiB 320.07 GB)
Sector Offset : 0
Num Stripes : 2441944
Chunk Size : 128 KiB
Reserved : 0
Migrate State : idle
Map State : normal
Dirty State : clean

Disk00 Serial : 3QF114G6
State : active
Id : 00000000
Usable Size : 625136142 (298.09 GiB 320.07 GB)

Disk01 Serial : 3QF110YY
State : active
Id : 00010000
Usable Size : 625136142 (298.09 GiB 320.07 GB)
/dev/sdc:
Magic : Intel Raid ISM Cfg Sig.
Version : 1.0.00
Orig Family : b4c0480b
Family : b4c0480b
Generation : 000008f3
Attributes : All supported
UUID : 836624b9:315b2a09:eb3596b0:09e8a73c
Checksum : 5e809a03 correct
MPB Sectors : 1
Disks : 2
RAID Devices : 1

[Local RAID 0]:
UUID : cb5a3287:6318d5ac:b8be4745:bd0b5112
RAID Level : 0
Members : 2
Slots : [UU]
Failed disk : none
This Slot : ?
Array Size : 1250275328 (596.18 GiB 640.14 GB)
Per Dev Size : 625137923 (298.09 GiB 320.07 GB)
Sector Offset : 0
Num Stripes : 2441944
Chunk Size : 128 KiB
Reserved : 0
Migrate State : idle
Map State : normal
Dirty State : clean

Disk00 Serial : 3QF114G6
State : active
Id : 00000000
Usable Size : 625136142 (298.09 GiB 320.07 GB)

Disk01 Serial : 3QF110YY
State : active
Id : 00010000
Usable Size : 625136142 (298.09 GiB 320.07 GB)

$mdadm --build /dev/md2 --chunk=128 --level=0 --raid-devices=2 /dev/sdb /dev/sdc
mdadm: array /dev/md2 built and started.

$mdadm --detail /dev/md2
/dev/md2:
Version :
Creation Time : Thu Apr 16 20:45:25 2015
Raid Level : raid0
Array Size : 625142272 (596.18 GiB 640.15 GB)
Raid Devices : 2
Total Devices : 2

State : clean
Active Devices : 2
Working Devices : 2
Failed Devices : 0
Spare Devices : 0

Chunk Size : 128K

Number Major Minor RaidDevice State
0 8 16 0 active sync /dev/sdb
1 8 32 1 active sync /dev/sdc

$mount -t ntfs -o ro /dev/md2 /media/raid
NTFS signature is missing.
Failed to mount '/dev/md2': Invalid argument
The device '/dev/md2' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?

$mount -t ntfs -o ro /dev/md2p1 /media/raid
NTFS signature is missing.
Failed to mount '/dev/md2p1': Invalid argument
The device '/dev/md2p1' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?

$cat /proc/mdstat
Personalities : [raid0]
md2 : active raid0 sdc[1] sdb[0]
625142272 blocks super non-persistent 128k chunks

unused devices: <none>

$cat /proc/partitions
major minor #blocks name

8 0 117220824 sda
8 1 204800 sda1
8 2 116381216 sda2
8 3 634768 sda3
8 16 312571224 sdb
8 17 307200000 sdb1
8 48 62521344 sdd
8 49 2926976 sdd1
8 50 64544 sdd2
8 51 59529792 sdd3
8 32 312571224 sdc
8 33 102400 sdc1
8 34 312467800 sdc2
7 0 2687180 loop0
9 2 625142272 md2
259 0 307200000 md2p1

Any help would be greatly appreciated!:)
 
Thank you for your answer but if there would been a backup I wouldn't have posted this question in the first place... Probably.
People don't usually take backups until they need one.
 


Yes, and everyone knows that, except my friend who didn't!
Anyways, thanks for your time :hello: