Writing an image to a USB stick or SD card on macOS
/docs/gears/faq-howto-troubleshooting/writing-image/macos/
The instructions are the same, regardless of whether you write the image to a USB stick, or to an SD card.
If you are writing to an SD card, you can use your computer’s built-in SD card reader (if it has one), or use a USB adapter.
Note
In more recent versions of Mac OSX, a feature called “System Integrity Protection” (SIP) may prevent even the root user from directly writing to disk. To be able to write your UBOS image to a USB stick or SD card, you may need to either disable SIP (not recommended), or give the Terminal app extra rights (better). To do the latter, in “System Preferences”, select “Security & Privacy”, then “Full Disk Access” and add “Terminal” to the list of apps (usually empty) that have full access. How to do that is described in more detail in this OSXdaily article.
To write the image:
-
Run the Terminal app that comes with macOS. All commands below are intended to be run in the Terminal app.
-
Determine the device name of your USB stick or SD card. That is easiest if you run:
% diskutil list
before you insert the USB stick or SD card, and then after. The device that has shown up is the device that you just inserted. For example, the device name may be
/dev/disk8
.Warning
Make sure you get the device name right, otherwise you might accidentally destroy the data on some other hard drive!
Warning
Also make sure your USB stick or SD card does not contain any valuable data; it will be mercilessly overwritten.
-
Depending on what’s on your USB stick or SD card, OSX might have automatically mounted it. To unmount:
% diskutil unmountDisk /dev/diskN
-
Determine the file name of the image you downloaded. Let’s assume it is
~/Downloads/ubos_green_x86_64-pc_LATEST.img
. If you downloaded a compressed version, uncompress the file first. -
Write the image using
dd
, such as:% sudo dd if=~/Downloads/ubos_green_x86_64-pc_LATEST.img of=/dev/rdiskN bs=1m
replacing
/dev/rdiskN
with the device name of your USB stick or SD card. You can use either/dev/diskN
or/dev/rdiskN
(replacingN
with the correct number), but/dev/rdiskN
is faster.If you see the error
dd: Invalid number `1m'
, you are using GNUdd
. Use the same command but replacebs=1m
withbs=1M
.This may take 10min or longer, depending on the speed of your USB stick or SD card, so be patient.
-
When done, for good measure:
% sync
and wait for a little bit. Rumor has it some flash drives keep writing for some time after the OS thinks they are done. If that is true for your device, and you remove the device prematurely, you may end up with a corrupted image without a good way of telling that it happened.
Thanks to the Ubuntu project whose description helped when creating this page.