View Single Post
      01-29-2018, 05:58 AM   #20
Jagaer
Private First Class
Canada
430
Rep
170
Posts

Drives: 2011 E91 328xi 6MT
Join Date: Aug 2017
Location: Kingston, Ont

iTrader: (0)

n2siast Everything I performed in the instruction can be done with OSX, but as opjose stated, you do need to use the QNX VM to create the new partitions.

To make a drive image, you need an USB->IDE cable.

Your device will be different (not /dev/sdc, something like /dev/disk2), so you'll need to identify the disk with
Code:
diskutil list
and look for the device that doesn't say "APPLE". Then use that device with dd to save the drive to a disk image
Code:
dd if=CIC_Drive.img of=/dev/disk2 bs=64k status=progress
Appreciate 0