I'm not sure why that is happening, but have you tried mounting it anyway, either as ntfs or vfat, to see if you can access the data? If you don't want to modify the data, the "-o ro" option for read-only should be safe.
/dev/mapper/isw_dedcedige_RAID_Volume1p1 looks like a partition of some sort. It's possible that the type of partition is incorrect.
Also, if you run, as root,
Code: Select all
head /dev/mapper/isw_dedcedige_RAID_Volume1p1 | file -
the file command will give you information about the partition type.
My FAT32 dirive on /dev/hda1 has:
/dev/stdin: x86 boot sector, Microsoft Windows XP Bootloader NTLDR, code offset 0x58, OEM-ID "MSWIN4.1", sectors/cluster 64, Media descriptor 0xf8, heads 255, hidden sectors 63, sectors 78156162 (volumes > 32 MB) , FAT (32 bit), sectors/FAT
If mounting that doesn't work, and file gives no indication of what is on the partition, you could try looking manually at the output of
head /dev/DEVICENAME, and see what's actually at the beginning. You should hopefully see some indicator of a NTFS or FAT32 partition in the output. If you get alot of garbage,
less /dev/DEVICE, which should filter out the bad characters.
If you don't see any indicator that a filesystem exists there, you could also try looking directly at /dev/mapper/isw_dedcedige_RAID_Volume1, and see if that is actually the partition.