diskcopy


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers diskcopy
# 1  
Old 10-18-2002
diskcopy

hi All,


how can I do floppy diskcopy in unix ? "like diskcopy a: b:"

alice
# 2  
Old 10-18-2002
If you've only got one drive, you could do:
Insert disk to be copied (master)
Code:

dd if=/dev/fd0 of=./temp.dsk

remove master and insert blank formatted disk; then type

Code:

dd if=./temp.dsk of=/dev/fd0
rm ./temp.dsk

Smilie
 
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question