Before I definitely switched to Linux Desktop on my home computer (see Reviewing 6 months with Linux Mint 17.3 as desktop OS) I was running Windows 7 with a "fakeraid" setup. Fakeraid is a simple software based raid (ISW) solution from Intel which can be enabled on supported motherboards in BIOS settings. Meanwhile I got a bit wiser and would never again use this kind of raid setup. Nevertheless I needed some data from this old setup and I still had the hard drives in a drawer. Time to mount these old drives in my current Linux Mint (18.3) setup and retrieve the data.
Once the drive was connected, using an extended USB SATA connector (QuickPort XT from Sharkoon), the Kernel saw it appearing as /dev/sdd:
ckadm@mintp ~ $ dmesg |tail
[322642.705190] usbcore: registered new interface driver uas
[322649.605339] scsi 6:0:0:0: Direct-Access ST375052 5AS JC45 PQ: 0 ANSI: 5
[322649.606085] sd 6:0:0:0: Attached scsi generic sg4 type 0
[322649.606215] sd 6:0:0:0: [sdd] 1465149168 512-byte logical blocks: (750 GB/699 GiB)
[322649.606704] sd 6:0:0:0: [sdd] Write Protect is off
[322649.606705] sd 6:0:0:0: [sdd] Mode Sense: 23 00 00 00
[322649.607205] sd 6:0:0:0: [sdd] No Caching mode page found
[322649.607208] sd 6:0:0:0: [sdd] Assuming drive cache: write through
[322649.652525] sdd: sdd1 sdd2 sdd3
[322649.654240] sd 6:0:0:0: [sdd] Attached SCSI disk
The partition table could also be read successfully using fdisk:
mintp ~ # fdisk -l /dev/sdd
Disk /dev/sdd: 698.7 GiB, 750156374016 bytes, 1465149168 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
Disklabel type: dos
Disk identifier: 0x6cef09fe
Device Boot Start End Sectors Size Id Type
/dev/sdd1 * 2048 206847 204800 100M 7 HPFS/NTFS/exFAT
/dev/sdd2 206848 143359999 143153152 68.3G 7 HPFS/NTFS/exFAT
/dev/sdd3 143360000 1465141247 1321781248 630.3G 7 HPFS/NTFS/exFAT
Using the information from fdisk's output, it can be seen that there are three partitions:
But as soon as I tried to mount /dev/sdd3, the operation failed:
mintp ~ # mount /dev/sdd3 /mnt
mount: special device /dev/sdd3 does not exist
And yes, the relevant NTFS mount tools (ntfs-3g) are installed. For the sake of article completeness:
mintp ~ # dpkg -l|grep -i ntfs
ii ntfs-3g 1:2015.3.14AR.1-1ubuntu0.3 amd64 read/write NTFS driver for FUSE
ii syslinux 3:6.03+dfsg-11ubuntu1 amd64 collection of bootloaders (DOS FAT and NTFS bootloader)
Checking the current drive information using blkid revealed that this drive is still "introducing" itself as a member of an ISW raid:
mintp ~ # blkid | grep sdd
/dev/sdd: TYPE="isw_raid_member"
I've had a kind of similar issue in the past with Intel ISW drives, described in article Mount a HDD which is a member in Intel Raid to back up data, however back then I got another error message (device or resource busy) when I tried to mount the partition. So there must be something else going on. The commands (dmraid) from this older article unfortunately didn't work.
Even trying to manually enable the ISW raid did not work:
mintp ~ # dmraid -ay
ERROR: isw: Could not find disk /dev/sdd in the metadata
no raid disks
On the other hand, an isw controller could not be found in /dev/mapper/ either (which is needed to talk to the partitions behind the ISW raid):
mintp ~ # ls /dev/mapper/*
/dev/mapper/control
Additional information about the Intel ISW Raid could also be seen using mdadm:
mintp ~ # mdadm -E /dev/sdd
mdmon: /dev/sdd is not attached to Intel(R) RAID controller.
mdmon: /dev/sdd is not attached to Intel(R) RAID controller.
/dev/sdd:
Magic : Intel Raid ISM Cfg Sig.
Version : 1.1.00
Orig Family : 174b6efe
Family : 174b6fc2
Generation : 0063e318
Attributes : All supported
UUID : 0b24ad7f:9b251541:a98a3748:f6333faa
Checksum : 3abd3e46 correct
MPB Sectors : 1
Disks : 2
RAID Devices : 1
[RAID1]:
UUID : aaa62640:f0d57fc8:6c097c8f:547b9c8f
RAID Level : 1
Members : 2
Slots : [UU]
Failed disk : none
This Slot : ?
Array Size : 1465143296 (698.63 GiB 750.15 GB)
Per Dev Size : 1465143560 (698.63 GiB 750.15 GB)
Sector Offset : 0
Num Stripes : 5723216
Chunk Size : 64 KiB
Reserved : 0
Migrate State : idle
Map State : normal
Dirty State : clean
Disk00 Serial : 6VPCFBB5
State : active
Id : 00010000
Usable Size : 1465142862 (698.63 GiB 750.15 GB)
Disk01 Serial : 9VPBDF78
State : active
Id : 00000000
Usable Size : 1465142862 (698.63 GiB 750.15 GB)
Just when I thought to give up and attach the drive to a Windows machine, I finally came across a thread in the Fedora forums which a very interesting post from user lzap:
Seems mdadm tried to build an array for me
I checked the mdadm status and indeed, there was a new raid md127 showing up, using the SDD drive!
mintp ~ # cat /proc/mdstat
Personalities : [raid1] [linear] [multipath] [raid0] [raid6] [raid5] [raid4] [raid10]
md127 : inactive sdd[0](S)
3153 blocks super external:imsm
md0 : active raid1 sda1[0] sdb1[1]
484060160 blocks super 1.2 [2/2] [UU]
bitmap: 4/4 pages [16KB], 65536KB chunk
md1 : active raid1 sdb2[1] sda2[0]
4190208 blocks super 1.2 [2/2] [UU]
unused devices:
Disabled this raid device followed by erasing the drive's superblock:
mintp ~ # mdadm --stop /dev/md127
mdadm: stopped /dev/md127
mintp ~ # mdadm --zero-superblock /dev/sdd
mdmon: /dev/sdd is not attached to Intel(R) RAID controller.
mdmon: /dev/sdd is not attached to Intel(R) RAID controller.
And finally, blkid showed the partition uuid's:
mintp ~ # blkid|grep sdd
/dev/sdd1: LABEL="System Reserved" UUID="CEAABB7CAABB601F" TYPE="ntfs" PARTUUID="6cef09fe-01"
/dev/sdd2: UUID="101EC9371EC9171E" TYPE="ntfs" PARTUUID="6cef09fe-02"
/dev/sdd3: UUID="E646DD2A46DCFBED" TYPE="ntfs" PARTUUID="6cef09fe-03"
And as you may guess, mounting the data partition finally worked:
mintp ~ # mount -o ro /dev/sdd3 /mnt
mintp ~ # df -h /mnt
Filesystem Size Used Avail Use% Mounted on
/dev/sdd3 631G 508G 123G 81% /mnt
No comments yet.
AWS Android Ansible Apache Apple Atlassian BSD Backup Bash Bluecoat CMS Chef Cloud Coding Consul Containers CouchDB DB DNS Database Databases Docker ELK Elasticsearch Filebeat FreeBSD Galera Git GlusterFS Grafana Graphics HAProxy HTML Hacks Hardware Icinga Influx Internet Java KVM Kibana Kodi Kubernetes LVM LXC Linux Logstash Mac Macintosh Mail MariaDB Minio MongoDB Monitoring Multimedia MySQL NFS Nagios Network Nginx OSSEC OTRS Office PGSQL PHP Perl Personal PostgreSQL Postgres PowerDNS Proxmox Proxy Python Rancher Rant Redis Roundcube SSL Samba Seafile Security Shell SmartOS Solaris Surveillance Systemd TLS Tomcat Ubuntu Unix VMWare VMware Varnish Virtualization Windows Wireless Wordpress Wyse ZFS Zoneminder