View Single Post
      12-06-2018, 04:12 AM   #44
SteveEvans
Private
45
Rep
71
Posts

Drives: E92 M3 Coupe
Join Date: Oct 2016
Location: UK

iTrader: (0)

Quote:
Originally Posted by Jagaer View Post
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
CAREFUL!

If you use dd with of=/dev/disk2 you are writing to the disk, not saving the drive to a disk image. @Jagaer can I suggest you edit your post to fix this before somebody kills their drive with no backup!

Thanks,

Steve
Appreciate 0