How to install Raspbian Wheezy on the Raspberry Pi

John John (304)
15 minutes

Raspbian is a free Debian-based operating system optimized for the Raspberry Pi. It is the official supported operating system for the Raspberry Pi.

Note: A new version of Raspbian is available! Learn how to install Raspbian Stretch

Raspberry Pi 2Raspberry Pi 2 ×1
Raspberry Pi power supply, 2A ×1
MicroSD card, 32GB ×1

Howchoo is reader-supported. As an Amazon Associate, we may earn a small affiliate commission at no cost to you when you buy through our links.

Click here to find the latest Raspbian Wheezy download. For this guide, I'm going to download the zip file.

Put your Micro SD card into your computer

You will likely need to use an adapter.

If you're using a Mac, you can use the following steps. If you're on Windows, scroll below.

Open Disk Utility and find your SD card

To open Disk Utility you can type cmd + space bar and search. Or you can use Finder to navigate to Applications > Utilities > Disk Utility.

Format the SD card

You'll need to format the SD card to FAT-32. To do so you'll need to click on the "Apple SDXC Reader" in the left column of Disk Utility.

Click the "Erase" tab.

Choose a name for the card (I chose Wheezy). For the format, choose MS-DOS (FAT).

Click "Erase" when you're finished.

Using the df command we're going to determine the mount point.

Type:

df -h

In the output, under the Mounted on column look for the name of your SD card. I named my WHEEZY so I'm looking for /Volumes/WHEEZY.

Then take note of the filesystem name in the first column. Mine is /dev/disk2s1. This is actually the partition name, but what we're really concerned with is the device name which is disk2. Copy this device name.

Unmount the Volume

For this step you can use either Disk Utility or Finder. In either case look in the left column for the name of your SD card. In my case it's WHEEZY and click the eject symbol.

Hopefully by now the disk image is done downloading. By default, the disk image will download to your Downloads folder. Open up the Terminal application and type:

cd ~/Downloads

To locate the img type:

ls -lha | grep wheezy

You should see some output like this:

Downloads > ls -lha | grep wheezy
-rw-r--r--@   1 josephtyler  staff   990M Feb  2 14:59 2015-05-05-raspbian-wheezy.zip

Now unzip the image. Make sure to use the name of your file.

unzip 2015-05-05-raspbian-wheezy.zip

Go back to Terminal (ensuring you are in the same directory as before), and type:

sudo dd bs=1m if=DISK_IMAGE_NAME of=DEVICE_NAME

Make sure to replace the values for DISK_IMAGE_NAME and DEVICE_NAME. Mine looks like this:

sudo dd bs=1m if=2015-05-05-raspbian-wheezy.img of=/dev/rdisk2

Enter your password, wait until it finishes, and you're done.

If you're using Windows to format the Disk you can use the following steps.

Open Windows Explorer and find your SD card. Right click on the icon and click Format.... Make sure Fat 32 (default) is selected and hit enter.

Go here and download the app called Win32 Disk Imager. After downloading the program, click to uncompress the files, and then click Win32DiskImager.exe to launch.

In the Win32 Disk Imager, click the blue folder icon and locate the Wheezy image you downloaded. Then in the Device box make sure the drive letter for your SD card is selected.

Click the Write button to begin.

John John (304)
15 minutes

Raspbian is a free Debian-based operating system optimized for the Raspberry Pi. Jessie is the development code name for Debian 8.