4. Flash ISO Image to a Storage Device a. Select a new Storage Device which can be overwritten entirely b. Find the name of the Storage Device using [this guide](storage-device-management.md#finding-a-storage-device-name) d. Use the `dd` utility in the Terminal to flash AirgapOS to it. You will need to replace `` with the name of your device. ```bash sudo dd bs=4M if=~/airgap/dist/airgap.iso of=/dev/ status=progress ``` In the example, the name of the device is `sda` so the complete command would look like this: ```bash sudo dd bs=4M if=~/airgap/dist/airgap.iso of=/dev/sda status=progress ``` Once this step is complete, you have successfully set up a Storage Device with AirgapOS.