Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 03e8660

Browse files
committed
Fix dd blocksize parameter
When specifying a blocksize in megabytes you need to use a capital M. Otherwise you get this error: ``` wichert@kim $ dd bs=1m if=2014-01-07-wheezy-raspbian.img of=/dev/disk1 dd: invalid number '1m' ```
1 parent 6498f95 commit 03e8660

File tree

1 file changed

+2
-2
lines changed
  • installation/installing-images

1 file changed

+2
-2
lines changed

installation/installing-images/mac.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ On Mac OS you have the choice of the command line `dd` tool or using the graphic
2828
2929
e.g. `diskutil unmountDisk /dev/disk4`
3030
31-
`sudo dd bs=1m if=image.img of=/dev/DISK`
31+
`sudo dd bs=1M if=image.img of=/dev/DISK`
3232
33-
e.g. `sudo dd bs=1m if=2014-01-07-wheezy-raspbian.img of=/dev/disk4`
33+
e.g. `sudo dd bs=1M if=2014-01-07-wheezy-raspbian.img of=/dev/disk4`
3434
3535
This will take a few minutes.
3636

0 commit comments

Comments
 (0)