Your submission was sent successfully! Close

You have successfully unsubscribed! Close

Thank you for signing up for our newsletter!
In these regular emails you will find the latest updates about Ubuntu and upcoming events where you can meet our team.Close

Create an Ubuntu image for a Raspberry Pi on MacOS

1. Overview

In this tutorial, we will walk you through creating a bootable Ubuntu microSD card for your Raspberry Pi .

What you’ll learn

How to create a bootable microSD card to run Ubuntu on your Raspberry Pi

What you’ll need

Warning
Following these steps will erase any existing content on the removable drive!

Please note
The following instructions are for MacOS users. We also have tutorials for Ubuntu and Windows users.


2. On your MacOS machine

  1. Download the Ubuntu image for your device in your **Downloads** folder

  2. Insert your microSD card

  3. Open a terminal window (Go to Application » Utilities, you will find the Terminal app there), then run the following command:

    diskutil list

  4. In the results, identify your removable drive device address, it will probably look like an entry like the ones below:

/dev/disk0
#:     TYPE NAME                       SIZE         IDENTIFIER
0:      GUID_partition_scheme         *500.3 GB     disk0

/dev/disk2
#:     TYPE NAME                       SIZE         IDENTIFIER
0:     Apple_HFS Macintosh HD         *428.8 GB     disk1
Logical Volume on disk0s2
E2E7C215-99E4-486D-B3CC-DAB8DF9E9C67
Unlocked Encrypted

/dev/disk3
#:     TYPE NAME                       SIZE         IDENTIFIER
0:     FDisk_partition_scheme         *7.9 GB          disk3
1:     DOS_FAT_32 NO NAME              7.9 GB          disk3s1

Note
Your removable drive must be DOS_FAT_32 formatted. In this example, /dev/disk3 is the drive address of an 8GB microSD card.

  1. Unmount your microSD card with the following command:

    diskutil unmountDisk < drive address >

  2. When successful, you should see a message similar to this one:
    Unmount of all volumes on < drive address > was successful

  3. You can now copy the image to the microSD card, using the following command:
    sudo sh -c 'gunzip -c ~/Downloads/< image file > | sudo dd of=< drive address > bs=32m'

    When finalised you will see the following message:

3719+1 records in
3719+1 records out
3899999744 bytes transferred in 642.512167 secs (6069924 bytes/sec)
  1. You can now eject your microSD card

3. That’s all folks!

You did it!

Now you can put the microSD card in your Raspberry Pi and boot it up.