Date: Wed, 13 Jun 2001 18:55:28 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Michelle Konzack cc: djgpp AT delorie DOT com Subject: Re: dd vers rawrite.exe/rawread.exe In-Reply-To: <3.0.6.16.20010613161401.5ff7a640@pop3.01019freenet.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Wed, 13 Jun 2001, Michelle Konzack wrote: > I use Linux and the rawrite.exe/rawread.exe to write and Read Floppy- > Images. Now I like to read LS-120 and 100/250 MByte ZIP-Disks. On GNU/Linux or with DJGPP programs on DOS/Windows? > Unfortunately I have no experience in Disk-Operations like reading and > writing sectors or anything like this. > > Can anyone give me a kick in the right direction please. Take a look at djtar's source, it can read raw floppy disks. > Or does a toll like dd under Linux exist for Dos ? dd is part of GNU Fileutils, so its DJGPP port is available. But it cannot access block devices, only character devices and regular files. However, it shouldn't be hard to write a Filesystem Extension module that would support sector-level access to a floppy or a similar device via BIOS calls. When linked with such an extension, dd should be able to do what it does on GNU/Linux systems.