Using Macbook Air 2013 with …

Using Macbook Air 2013 with OSX 10.8.5

Applications -> Utilities -> Boot Camp Assistant -> continue

check the "Create a Windows7 install disk"

you need to prepare a usb disk and a Windows7 iso file


2013/10/14 failed for making a Windows7 bootable usb disk using the method below

  • Convert a iso file into a img file:
    hdiutil convert -format UDRW -o $[name].dmg $[name].iso

  • List the disk storage information:
    diskutil list

    You should see the usb disk is one of the /dev/disk?

  • Unmount the usb disk for writing the img file into the usb:
    diskutil umountDisk /dev/disk?

  • Use dd command to write the img file into the ubs disk:
    sudo dd -if=$[name].dmg -of=/dev/disk? bs=1m

  • If your dd command is GNU version, use:
    sudo dd -if=$[name].dmg -of=/dev/disk? bs=1M

  • After the dd command is completed, eject the usb disk:
    diskutil eject /dev/disk?


Reference


Share


Donation

如果覺得這篇文章對你有幫助, 除了留言讓我知道外, 或許也可以考慮請我喝杯咖啡, 不論金額多寡我都會非常感激且能鼓勵我繼續寫出對你有幫助的文章。

If this blog post happens to be helpful to you, besides of leaving a reply, you may consider buy me a cup of coffee to support me. It would help me write more articles helpful to you in the future and I would really appreciate it.


Related Posts