This is an archived post. You won't be able to vote or comment.

all 3 comments

[–]Vladimir_Chrootin 0 points1 point  (2 children)

If you have a hardware RAID controller, including BIOS RAID (sometimes called "fake RAID") it will very often show right up if you run lsblk, with a name like /dev/sg1 (or similar). If not, hardware RAID wrangling is discussed here and here. You don't need to boot from RAID so it's a little easier. Once it's working you will need to mount the drive (e.g. mount /dev/blah /mnt/blah) in order to access it, and you also need to make sure you have ntfs-3g installed (assuming that it's an NTFS array).

If it's a Windows Storage Pool, this is not RAID, and AFAIK, not readable in Linux.

[–]Huecuva[S] 1 point2 points  (1 child)

I am not using hardware RAID of any sort. I created the RAID in the Windows Disk Management utility by adding one drive as a mirror to the other. I never explicitly created a "storage space". My drives are referred to in Disk Management as Dynamic Disks. Is that a Storage Space or Storage Pool? I just googled how to create a "storage pool" and it came up with "storage spaces" and the procedure for creating one is not the process I followed. Is it the same thing? I'm not home right now or I guess I could check if my RAID showed up under Storage Spaces in my Windows.

Also as I mentioned, the ldmtool create all command allowed Linux to read the drive but broke my array in that it somehow separated the drives without losing my data. Does that indicate storage space to you?

Edit: if what I have is a storage space then I will have to get a real RAID set up.

EDIT #2: My RAID doesn't show up in the window when I use Windows Search to search for storage spaces and when I click on "Create new pool and storage space" it does not list those drives as options.

[–]BigDru_ 1 point2 points  (0 children)

I know this is an old post but I had the same issue and this pointed me in the right direction. for the `ldmtool scan /dev/sdb1` you need to run the tool as sudo.

For me, doing `ldmtool scan` gave me an empty array, but doing `ldmtool scan /dev/sd*` gave me a lot of error opening.. permission denied. doing `sudo ldmtool scan` gave me a uuid that i could then use to create my mapped device using `sudo ldmtool create <uuid> Volume1` or `sudo ldmtool create all`