Overview
One of the neat aspects of OSX is that it has all the classic Unix tools available. Linux users know that dd is the command line tool to flash a CF card or a USB drive on Linux. Here is how to use dd on the Mac.
Steps
- Eject and unplug the card
- On the command line run
diskutil list - Plug in your CF drive
- On the command line run
diskutil list. Your drive will be named/dev/diskNwhereNis the number of the drive.
- Open a command line tool (
terminal or xterm if you have X11.- Itentify the drive to flash:
- Flash the drive by running:
sudo dd if=/Users/xxxxx/Desktop/pfSense.img of=/dev/rdiskN bs=1m (in this exmple I’m burning the pfSense.img file, replace it with the file you want to use to flash the firewall.- Eject the drive:
diskutil eject /dev/diskN