From: Harald W. <hwe...@gm...> - 2008-05-21 18:20:26
|
Hello, Henry Nestler <Hen...@Ar...>: >coLinux can copen the devie but can't ead any? >Is the device locked? Is the device opened by Windows perhaps? I don't think so. >Please try to read a block with the windows variant of dd: > dd.exe if=\Device\Harddisk0\Partition4 of=foo bs=512 count=1 > >Try the official names "\\?\Device\Harddisk0\Partition4" or >"\\?\Device\HarddiskVolume4", as you have seen from dd --list. The result is: D:\coLinux>dd.exe if=\\?\Device\Harddisk0\Partition4 of=foo bs=512 count=1 rawwrite dd for windows version 0.5. Written by John Newbigin <jn...@it...> This program is covered by the GPL. See copying.txt for details Error reading file: 2 Das System kann die angegebene Datei nicht finden 0+0 records in 0+0 records out Same for the HarddiskVolume4 partition, and also for the Partition 6. On the other two partitions, it works fine: D:\coLinux>dd.exe if=\\?\Device\Harddisk0\Partition5 of=foo bs=512 count=1 rawwrite dd for windows version 0.5. Written by John Newbigin <jn...@it...> This program is covered by the GPL. See copying.txt for details 1+0 records in 1+0 records out This means that Windows can access the two partitions of type 0x83 (Linux), but refuses access to type 0x8e (Linux LVM). While coLinux is running, none of the partitions can be accessed, but the error messages are different: (Type 0x8e Linux LVM) D:\coLinux>dd.exe if=\\?\Device\Harddisk0\Partition4 of=foo bs=512 count=1 rawwrite dd for windows version 0.5. Written by John Newbigin <jn...@it...> This program is covered by the GPL. See copying.txt for details Error reading file: 2 Das System kann die angegebene Datei nicht finden 0+0 records in 0+0 records out (Type 0x83 Linux) D:\coLinux>dd.exe if=\\?\Device\Harddisk0\Partition5 of=foo bs=512 count=1 rawwrite dd for windows version 0.5. Written by John Newbigin <jn...@it...> This program is covered by the GPL. See copying.txt for details Error native opening input file: 0 Der Vorgang wurde erfolgreich beendet Regards, Harald |