How to backup LIF formatted disk? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T13:14:57Zhttp://stackoverflow.com/feeds/question/87758http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/87758/how-to-backup-lif-formatted-disk0How to backup LIF formatted disk?Mike2008-09-17T21:16:35Z2008-09-18T03:15:22Z
<p>I have several old 3.5in floppy disks that I would like to backup. My attempts to create an image of the disks have failed. I tried using the UNIX utility dd_rescue, but when the kernel tries to open (/dev/fd0) I get a kernel error "floppy0: probe failed...". I would like an image because some of the floppies are using the LIF file system format. Does anyone have any ideas as to what I should do?</p>
<p>HP now Agilent made some tools that could read and write to files on LIF formatted disk. I could use these tools to copy and convert the files to the local disk but not without possibly losing some data in the process. In other words, converting from LIF to some other format back to LIF will lose some information.</p>
<p>I just want to backup the raw bytes on the disk and not be concerned with the type of file system.</p>
http://stackoverflow.com/questions/87758/how-to-backup-lif-formatted-disk/88447#884471Answer by tedu for How to backup LIF formatted disk?tedu2008-09-17T22:43:24Z2008-09-17T22:43:24Z<p>I think you'll find the best resource here: <a href="http://www.hpcc.org/datafile/hpil/lif_utils.html" rel="nofollow">http://www.hpcc.org/datafile/hpil/lif_utils.html</a></p>
<p>Also, if you're going to use raw dd, LIF format has 77 cylinders vs 80 for a normal floppy.</p>
http://stackoverflow.com/questions/87758/how-to-backup-lif-formatted-disk/89689#896890Answer by Paul Betts for How to backup LIF formatted disk?Paul Betts2008-09-18T03:15:22Z2008-09-18T03:15:22Z<p>dd if=/dev/floppy0 of=animage.bin conv=noerror</p>