InterviewSolution
Saved Bookmarks
| 1. |
You Read An Article That Lists The Following Command: Dd If=/dev/fdo Bs=512 Of=/new What Does This Accomplish? |
|
Answer» The DD command is a special copy command OFTEN USED for floppy disks and tapes. The if= option specifies the source; the bs= is the block SIZE; and the of= option is the output. The dd command is a special copy command often used for floppy disks and tapes. The if= option specifies the source; the bs= is the block size; and the of= option is the output. |
|