Advertisement
Guest User

Install OS X 10.9 Developer Preview on VMware Fusion

a guest
Jun 10th, 2013
20,778
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. # Quick and dirty way to install OS X 10.9 Developer Preview on VMware Fusion 5.0.3 yayaya
  2.  
  3. $ hdiutil convert -format UDRW -o Desktop/maverick.dmg /Applications/Install\ OS\ X\ 10.9\ Developer\ Preview.app/Contents/SharedSupport/InstallESD.dmg
  4. Reading Driver Descriptor Map (DDM : 0)…
  5. Reading (Apple_Free : 1)…
  6. Reading Apple (Apple_partition_map : 2)…
  7. Reading disk image (Apple_HFS : 3)…
  8. .......................................................................................................................................................................................................................................
  9. Reading (Apple_Free : 4)…
  10. Elapsed Time: 40.132s
  11. Speed: 121.3Mbytes/sec
  12. Savings: 0.0%
  13. created: /Users/pipo/Desktop/maverick.dmg
  14.  
  15. $ hdiutil resize -size 9g Desktop/maverick.dmg
  16.  
  17. $ hdiutil attach Desktop/maverick.dmg
  18. /dev/disk2 Apple_partition_scheme
  19. /dev/disk2s1 Apple_partition_map
  20. /dev/disk2s2 Apple_HFS /Volumes/OS X Install ESD
  21.  
  22. $ sudo disktool -A disk2s2
  23. diskutil: please use diskutil(8) instead of disktool
  24. File system user/group ownership enabled
  25.  
  26. $ hdiutil mount /Applications/Install\ OS\ X\ 10.9\ Developer\ Preview.app/Contents/SharedSupport/InstallESD.dmg
  27. /dev/disk3 Apple_partition_scheme
  28. /dev/disk3s1 Apple_partition_map
  29. /dev/disk3s2 Apple_HFS /Volumes/OS X Install ESD 1
  30.  
  31. $ hdiutil attach /Volumes/OS\ X\ Install\ ESD\ 1/BaseSystem.dmg
  32.  
  33. $ sudo disktool -A disk4s2
  34. diskutil: please use diskutil(8) instead of disktool
  35. File system user/group ownership enabled
  36.  
  37. $ sudo ditto /Volumes/OS\ X\ Base\ System/ /Volumes/OS\ X\ Install\ ESD
  38.  
  39. $ hdiutil detach /Volumes/OS\ X\ Install\ ESD
  40. "disk2" unmounted.
  41. "disk2" ejected.
  42.  
  43. # Boot onto maverick.dmg
  44. # Format and name target hard drive
  45. # Launch Terminal
  46.  
  47. $ installer -pkg /Packages/OSInstall.mpkg -target /Volumes/Maverick\ HD
  48. (...)
  49. installer: The install was successful.
  50. # Reboot
  51. # Have fun with blonds
  52.  
  53. .-)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement