Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to duplicate a diskette

Status
Not open for further replies.

KnowNix

MIS
Nov 10, 2003
32
NL
I make a backup / duplicate of my HighCapacity (2Mb) Diagnostics Test Diskette

I use :
# dd if=/dev/fd0 of=/tmp/ddcopy
2880+0 records in.
2880+0 records out.


# dd if=/tmp/ddcopy of=/dev/fd0
2880+0 records in.
2880+0 records out.


Is this a 'real' diskcopy now ? It takes a lot of time to do so, are there other (1-line) commands to do the same ?

thanks, and Happy Cristmas everybody...
 
Yes it's the correct procedure.
I have used in the past also to duplicate DOS diskette.
Just to speed up the copy operation you could specify a bigger block size using the parameter bs=64k
i.e. dd if=/dev/fd0 of=/tmp/floppy.image bs=64k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top