You can do it from the command line as well. No need to install anything.
ls -la /dev/sd*
before and after plugging in the sd-card. I saw the date of /dev/sdc
change and thus decided that that was the one./home/username/Downloads/2012-10-28-wheezy-raspbian.img
for me.Type the following (mutatis mutandis):
sudo dd if=/home/username/Downloads/2012-10-28-wheezy-raspbian.img of=/dev/sdc
or with improvements suggested by other users:
sudo dd if=/home/username/Downloads/2012-10-28-wheezy-raspbian.img of=/dev/sdc status=progress bs=4M
and wait for the command to return. It may be quite a while, especially over usb2.
Resizing can be done from the Pi itself in the raspi-config
program that starts automatically the first time you boot.
Be careful. Make absolutely sure the device name is that of the SD-card. If you replace it with the device name of your hard drive, your hard drive will be overwritten.