I am very new at linux. I have installed fedora 6 on my old computer on an ide drive. I also happen to have a silicon valley sata raid card with 2 500GB sata drives on it.
fdisk -l shows:
Code:
[root@iscsi-target mnt]# fdisk -l
Disk /dev/hdc: 251.0 GB, 251000193024 bytes
255 heads, 63 sectors/track, 30515 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/hdc1 * 1 13 104391 83 Linux
/dev/hdc2 5498 30515 200957085 83 Linux
/dev/hdc3 14 1318 10482412+ 83 Linux
/dev/hdc4 1319 5497 33567817+ 5 Extended
/dev/hdc5 1319 1971 5245191 83 Linux
/dev/hdc6 1972 2624 5245191 83 Linux
/dev/hdc7 2625 3277 5245191 83 Linux
/dev/hdc8 3278 3930 5245191 83 Linux
/dev/hdc9 3931 4583 5245191 83 Linux
/dev/hdc10 4584 5236 5245191 83 Linux
/dev/hdc11 5237 5497 2096451 82 Linux swap / Solaris
Partition table entries are not in disk order
Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 2 60801 488376000 83 Linux
Disk /dev/sdb: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdb1 * 2 60801 488376000 83 Linux
[root@iscsi-target mnt]#
There is a lot of data on the sata drives and I need to get access to them. I was able to do it yesterday and see all the data but somehow i can not achieve the same today.
mount returns the following:
Code:
[root@iscsi-target mnt]# mount /dev/sda1 /mnt/sda1
mount: /dev/sda1 is not a valid block device
[root@iscsi-target mnt]# mount /dev/sda /mnt/sda1
mount: /dev/sda already mounted or /mnt/sda1 busy
I can also see this raid through fdisk -l /dev/mapper/sil_xxxxx:
Code:
[root@iscsi-target mnt]# fdisk -l /dev/mapper/sil_ahadagddbhfe
Disk /dev/mapper/sil_ahadagddbhfe: 500.1 GB, 500106813440 bytes
255 heads, 63 sectors/track, 60801 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/mapper/sil_ahadagddbhfe1 * 2 60801 488376000 83 Linux
[root@iscsi-target mnt]#
But I still can not access it.
Please help me with recovering this data.
Thanks
ak