![]() |
John VanDyk has been innovating with information technology for more than 20 years. Read more... |
Using Mac OS X 10.6 to Create a Bootable FreeBSD 8.1 Installer on a USB Memory Stick
Warning. Follow these instructions at your own risk. I am not responsible when you use dd to blow away your kitty pictures.
Download the FreeBSD 8.1 memory stick image from a FreeBSD repository. I picked one from here.
Plug in your USB stick. OS X will mount it.
You want to unmount the volume while keeping the drive available. To do this, open Disk Utility, click on the name of the mounted volume, and click the Unmount button.
Now you need to know the disk's identifier. You can find this out by right-clicking the disk in Disk Utility. The disk identifier of my USB stick was disk4.
Finally, copy the memory stick image onto the memory stick, substituting the disk identifier into this terminal command. if means "in file" and of means "out file".
dd if=/path/to/freebsd.img of=/dev/diskidentifier bs=10240 conv=sync
So the commands I issued looked like this (yours will be different, since your disk identifier will be different).
dd if=/Users/john/Downloads/FreeBSD-8.1-RELEASE-amd64-memstick.img of=/dev/disk4 bs=10240 conv=sync
When it's done, dd says:
105018+0 records in
105018+0 records out
1075384320 bytes transferred in 1310.732002 secs (820446 bytes/sec)
That's 22 minutes.
Back to Disk Utility. Select the memory stick. Click the Eject button. Now go boot FreeBSD!
- Log in to post comments
Comments
dd options
Could you explain how to select the -bs and -conv options? Could you exclude them? Thanks.
Larger than default
Honestly I don't remember where I got the block size. Of course there's a Stack Overflow answer. If you exclude them the copy may take longer. Probably not a big deal.