ok
open a command shell in your mageia live environment and issue the following command
thats start -> system-tools -> konsole in kde
su -
now, run fdisk -l
the output will be something like
- Code: Select all
Disk /dev/sda: 256.1 GB, 256060514304 bytes, 500118192 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
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
/dev/sda1 2048 25189919 12593936 83 Linux
/dev/sda2 25192440 500103449 237455505 5 Extended
/dev/sda3 * 0 0 0 0 Empty
/dev/sda4 * 0 0 0 0 Empty
/dev/sda5 25192448 33367004 4087278+ 82 Linux swap / Solaris
/dev/sda6 33370112 500103449 233366669 83 Linux
now identify which one of the /dev/sdax is the partition you want to mount, or go through the following until you find it.
there exists a directory /mnt on most live cd's
ls -al /mnt
if it exists then
mount /dev/sda6 /mnt
if not
mkdir /mnt
first
you should now be able to open dolphin or similar and browse to /mnt and look to see if that is the partition that has your files.
regards peter
ps im adding this footnote to cover the eventuality that you disks problems may effect your home area.
if the badblocks on the harddisk have effected your home area the file system may become corrupt.
it is possible using the program badblocks to run a read analyse of your harddisk forcing it to remap the bad sectors to the bad sector table.
when it remaps them, it cant always recover the data, leaving your file system corrupt.
the fsck command can be run on your filesystem afterwards to bring part of it back to some sanity.
so steps to run badblocks is
badblocks /dev/sda
this is the read by default analyse
and it will report badblocks its found and force the hdd to try to remap.
once commpleted a second run should idealy show no badblocks
then each filesystem/mount point will need to be checked with the check facility native to the filesystem, so mageia thats proably fsck.ext4.
windows thats chkdsk
and so on.
hope that helps
regards peter