|
Home > IT Notes
Creating Rawrite disk images 
On a Linux machine:
- Insert the disk to be 'imaged' into drive A: (fd0)
- Enter
dd if=/dev/fd0 of=<filename> where <filename> is the name of the image file
- If you plan to use rawrite on a DOS machine, FTP the file to a DOS machine now
- GZip the files using
gzip -9 <filename> where <filename> is the name of the image file. This will create a file called <filename>.gz
To create a new disk from the image:
- Insert a blank disk in drive A: (fd0)
- Enter
gunzip -c <gzipfilename>|dd of=/dev/fd0 where <gzipfilename> is the name of the gzipped file
On a DOS machine (rawrite will not run in an NT DOS window):
- FTP the image file from the Linux machine
To create a new disk from the image:
- Insert a blank disk in drive A:
- Enter
rawrite <filename> a: where <filename> is the name of the image file
Home > IT Notes
|