How to create a Blancco bootable USB from MacOS?
Created date | Updated date | Affects version | Fix version |
|---|---|---|---|
Sep 1, 2021 | Nov 24, 2022 | Drive Eraser - All versions | N/A |
Description
Below instructions go through the necessary steps to create a bootable Blancco USB drive while using MacOS.
Note that the USB flash drive is not recognized by Windows due to USB format type after completing this process.
Step by step instructions
Open the Terminal (in /Applications/Utilities/ or query Terminal in Spotlight)
Convert Drive Eraser ISO to .img format using the convert option of hdiutil
hdiutil convert -format UDRW -o /path/to/target.img /path/to/source.isoMacOS tends to put the .dmg ending on the output file automatically. Rename the file to remove this additional extension.
mv /Users/blancco/Desktop/Drive_Eraser.img.dmg /Users/blancco/Desktop/DriveEraser.imgUse diskutil to identify the USB flash drive
Type diskutil list Press ENTER, used to get the current list of devices
Insert desired USB flash drive
Type diskutil list Press ENTER
Use diskutil to determine the device node assigned to inserted flash drive (e.g. /dev/disk2)
Take note of new device node ID, as this will be the newly added device inserted.
Unmount the USB flash drive (replace N with the disk number from the last command - in the previous example, N would be 2)
diskutil unmountDisk /dev/diskNConvert and copy the image file to the USB flash drive (replace /path/to/target.img with the path where the Drive Eraser .img file is located). Running the command requires user password, when prompted provide the password and press ENTER to continue.
sudo dd if=/path/to/DriveEraser.img of=/dev/rdiskN bs=1mCopying the IMG to the USB flash drive in progress. Note that there is no status provided during the copying process.
When completed, MacOS should ask to eject USB. If not asked to eject, run the following command and remove your flash media when the command completes.
diskutil eject /dev/diskN