Sunday, April 28, 2024
 Popular · Latest · Hot · Upcoming
1
rated 0 times [  1] [ 0]  / answers: 1 / hits: 1934  / 1 Year ago, mon, april 3, 2023, 7:36:15

I imaged my win7 system disk via ntfsclone + dd (mbr) to one of my Win7 Dynamic Disk RAID1 disks from within the Ubuntu LiveCD instance (only wrote to one of the disks in the win7 RAID1 array). I did this with success and was then able to reload the image into Virtual Box after fully installing Ubuntu 11.10.



Now, I'm trying to setup the RAID1 software RAID in Ubuntu (installed over old win7 system drive) via mdadm and I'm wondering if I can do this and have it resync the data on both drives without destroying the Dynamic Disk RAID config and without any data loss (most important)?



I realize I should have probably done this from the get go (even in LiveCD)... if this isn't possible - perhaps, I can re-partition the second RAID disk that wasn't written to and then have it resync? Or should I use dd to re-image first RAID drive -> 2nd Drive and then run mdadm?



Goal here is to have a dual boot Ubuntu/Win7 system which can both read/write from the RAID1 array... also, don't want to use fakeRAID, rather, software RAID


More From » windows-7

 Answers
5

After some hard searching found the answer to the solution....



Forum w/ solution:
http://ubuntuforums.org/archive/index.php/t-1776909.html



--------- Content of Forum in case it disappears, etc.. ------



I have a computer that I'm dual booting between Ubuntu 11.04 and Win7 (Enterprise?)



I have a SDD that I've split up for the OSs, and a pair of HDD that I'd like to RAID0 together. I've read in a few places that Linux should be able to handle Win7's Software RAID and found this helpful post: http://ubuntuforums.org/showthread.php?t=833653&highlight=dynamic+disk



I ran through the instructions but got stuck in trying to mount the drives.



What I did:
1. Load Win7




  1. Set both drives to GPT


  2. Build the RAID0


  3. Format to NTFS


  4. Verify it works (copied some file to it)


  5. Boot Ubuntu


  6. Run: cat /proc/partitions
    major minor #blocks name




8 0 312571224 sda
8 1 1024 sda1
8 2 130048 sda2
8 3 312440118 sda3
8 32 312571224 sdc
8 33 1024 sdc1
8 34 130048 sdc2
8 35 312440118 sdc3
8 16 78150744 sdb
8 17 102400 sdb1
8 18 38972416 sdb2
8 19 1 sdb3
8 21 39072768 sdb5
8 48 156290904 sdd
8 49 156288000 sdd1
9 0 624880128 md0




  1. Run: sudo mdadm --build /dev/md0 --chunk=64 --level=0 --raid-devices=2 /dev/sd[c|a][1-3] /dev/sd[a|c][1-3]
    mdadm: array /dev/md0 built and started


  2. Run: sudo mount -t ntfs-3g /dev/md0 /media/raid0
    NTFS signature is missing.
    Failed to mount '/dev/md0': Invalid argument
    The device '/dev/md0' 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?




I've swapped the devices around in all possible combos (8) and I get the same results each time.



Poking around via Google a bit more, I see that other have this working, so I'm hoping there's just something silly I'm missing.



Any suggestions?



---- Follow up post ----



So 'bout half way through posting that, I thought "Why not try MBR instead of GPT"?



I started over, used MBR on the disk and received a very different partition list:
8 32 312571224 sdc
8 33 312568832 sdc1
8 0 312571224 sda
8 1 312568832 sda1
8 16 78150744 sdb
8 17 102400 sdb1
8 18 38972416 sdb2
8 19 1 sdb3
8 21 39072768 sdb5
8 48 156290904 sdd
8 49 156288000 sdd1
9 0 625137664 md0



The right combo (for me) after that was:
sudo mdadm --build /dev/md0 --chunk=64 --level=0 --raid-devices=2 /dev/sda1 /dev/sdc1



So it seems that Linux CAN handle GPT, and it can handle MS's Dynamic Disk (which Win uses for RAID), it just can't do both at once (at the moment!).



I'm currently mounting and creating files on both Ubuntu 11.04 and Win 7 and can access them on either OS! :popcorn:



I hope this helps someone out there.:D


[#39870] Monday, April 3, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
sconhoney

Total Points: 403
Total Questions: 118
Total Answers: 109

Location: Andorra
Member since Mon, Jan 9, 2023
1 Year ago
sconhoney questions
;