Changes between Initial Version and Version 1 of Ticket #18969, comment 14
- Timestamp:
- Aug 18, 2024, 5:49:05 PM (3 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18969, comment 14
initial v1 7 7 ~> dd if=/dev/disk/ata/1/slave/0 of=FatFirstMB count=2000 8 8 9 In this example, /dev/disk/ata/1/slave/0 is the filename of a (not currently mounted) partition, as displayed in DriveSetup (you will need to replace this with the actual name of your USB dongle). FatFirstMB is the name of a new file to be created in the Terminal working directory (be sure not to use an existing filename, or it will be over-written). The count of 2000 tells dd to copy 2000 X 512 bytes from 'if' to 'of.'9 In this example, /dev/disk/ata/1/slave/0 is the filename of a (not currently mounted) partition, as displayed in DriveSetup (you will need to replace this with the actual name of the FAT partition on your USB dongle). FatFirstMB is the name of a new file to be created in the Terminal working directory (be sure not to use an existing filename, or it will be over-written). The count of 2000 tells dd to copy 2000 X 512 bytes from 'if' to 'of.' 10 10 11 11