Windows 5.x machine reports only about the first Fat32 and of course does not recognize the ext2. Using an utility called dskwipe, we can see the list of partitions as Window sees them:
C:\>dskwipe.exe -l
one of the lines will be the SD device name (0 here - the whole device, 1 - the first partition):
\Device\Harddisk1\Partition0
To access to the ext2 partition from CoLinux running atop the Windows we need to do the following:
- Add to the colinux.conf the following line
cobd1="\Device\Harddisk1\Partition0" - Load CoLinux and run fdisk /dev/cobd1
- Press 'u' to switch to block counting mode
- Press 'p' to output the partitions
- Write down the starting point of the ext2 partition multiplied by 512, say it will be 17754534912
- Setup a loop device:
losetup -o 17754534912 /dev/loop1 /dev/cobd1 - Check the file system integrity:
e2fsck /dev/loop1 - Mount the partition:
mount /dev/loop1 /media/sd_ext2
No comments:
Post a Comment