0630.html 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Running a MacOS 12 Monterey VM in VMware</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="How To,Tutorial,i12bretro,Hypervisor,MacOS,Apple,Mac OS 12,VM,Virtual Machine,Virtualization,VMware,Monterey">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Running a MacOS 12 Monterey VM in VMware">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  12. <script type="text/javascript">
  13. $(function(){
  14. $('textarea').each(function(i,e){
  15. theTextarea = $(this);
  16. theTextarea.height((theTextarea[0].scrollHeight-5) +'px');
  17. });
  18. $('li').each(function(i,e){
  19. if(!$(this).hasClass('noCheckbox')){
  20. var uuid = 'li_' + Math.floor(Math.random() * Math.floor(1000000)).toString() + '_' + i.toString();
  21. $(this).contents().wrap('<span id="'+ uuid +'"><label for="cb_'+ uuid +'"></label></span>');
  22. $(this).prepend('<input type="checkbox" class="completeBox" id="cb_' + uuid +'" rel="'+ uuid +'" />')
  23. }
  24. });
  25. $('code,div.codeBlock,textarea.codeBlock').each(function(i,e){
  26. theElement = $(this);
  27. var lines = theElement.html().split("\n");
  28. theElement.empty();
  29. for(l=0;l<lines.length;l++){
  30. if($.trim(lines[l]) != '' && $.trim(lines[l]).substr(0,1) != '#' && $.trim(lines[l]).indexOf(' #') == -1 && lines[l].substr(0, 4).toUpperCase() != 'REM '){
  31. theElement.append('<input type="image" src="images/clipboard.png" value="" class="copy-text" rel="copy_'+ i +'_'+ l +'" data-clipboard-text="'+ $.trim(lines[l].replace(/"/g, '&quot;')) +'" /><span id="copy_'+ i +'_'+ l +'">'+ lines[l] +'</span>');
  32. } else {
  33. theElement.append(lines[l]);
  34. }
  35. }
  36. });
  37. $(document).on('click','input.copy-text',function(){
  38. theButton = $(this);
  39. $('input.copy-text').attr('src','images/clipboard.png');
  40. $('span.copy-animation,span.copy-animation-ps').removeClass('copy-animation copy-animation-ps');
  41. try {
  42. if($('#'+ theButton.attr('rel')).parent('div').hasClass('PS')){
  43. $('#'+ theButton.attr('rel')).addClass('copy-animation-ps');
  44. } else if($('#'+ theButton.attr('rel')).parent('div').hasClass('CMD')){
  45. $('#'+ theButton.attr('rel')).addClass('copy-animation-cmd');
  46. } else {
  47. $('#'+ theButton.attr('rel')).addClass('copy-animation');
  48. }
  49. navigator.clipboard.writeText(theButton.data('clipboard-text').replace(/<[^>]*>?/gm, ''));
  50. theButton.attr('src','images/clipboard_active.png');
  51. } catch(err) {
  52. }
  53. return false;
  54. });
  55. $(document).on('click','input.completeBox',function(){
  56. theBox = $(this);
  57. $('#'+ theBox.attr('rel')).addClass('strikethrough');
  58. theBox.prop('disabled',true);
  59. theBox.parent('li').prevAll().each(function(i,e){
  60. theLI = $(this);
  61. if(theLI.find('input[type=checkbox]').not(':checked')){
  62. $('#'+ theLI.find('input[type=checkbox]').attr('rel')).addClass('strikethrough');
  63. theLI.find('input[type=checkbox]').prop('checked',true).prop('disabled',true);
  64. }
  65. });
  66. });
  67. if(window.self !== window.top){
  68. window.parent.$('iframe.stepsFrame').height((this['scrollingElement']['scrollHeight']+20) +'px');
  69. }
  70. });
  71. </script>
  72. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  73. </head>
  74. <body>
  75. <div id="gridContainer">
  76. <div class="topMargin"></div>
  77. <div id="listName" class="topMargin">
  78. <h1>Running a MacOS 12 Monterey VM in VMware</h1>
  79. </div>
  80. <div></div>
  81. <div id="content">
  82. <h2>Installing and Configuring VMware</h2>
  83. <ol>
  84. <li>Download a MacOS Monterey .iso <a href="https://archive.org/search.php?query=Mac%20OS%20Monterey&amp;and[]=mediatype%3A%22software%22" target="_blank">Download</a></li>
  85. <li>Download VMware Workstation Player <a href="https://www.vmware.com/products/workstation-player.html" target="_blank">Download</a></li>
  86. <li>Download MacOS Unlocker for VMware Workstation <a href="https://github.com/paolo-projects/auto-unlocker/releases" target="_blank">Download</a></li>
  87. <li>Install VMware Workstation Player, accepting the defaults</li>
  88. <li>Extract the downloaded MacOS Unlocker for VMware Workstation</li>
  89. <li>Inside the extracted file, right click Unlocker.exe &gt; Run as administrator</li>
  90. <li>Wait for the command prompt to close before continuing</li>
  91. </ol>
  92. <h2>Creating the Monterey VM</h2>
  93. <ol>
  94. <li>Launch VMware Workstation Player</li>
  95. <li>Click Continue to use Workstation Player for free for non-commercial use</li>
  96. <li>Click Finish</li>
  97. <li>Click Create a New Virtual Machine on the right side of the application</li>
  98. <li>Select Installer disc image file (iso) &gt; Browse to and select the downloaded MacOS Monterey .iso &gt; Click Next</li>
  99. <li>Select Apple Mac OS X and macOS 12 &gt; Click Next</li>
  100. <li>Name the VM MacOS 12 and set the path to store the VM files &gt; Click Next</li>
  101. <li>Adjust the disk size if necessary &gt; Click Next</li>
  102. <li>Click Finish<br />
  103. <em>NOTE: If running an AMD processor, edit the .vmx file in the folder you specified for the VM, add the following to the bottom of the file and save your changes</em>
  104. <p>mc.version = &quot;0&quot;<br />
  105. cpuid.0.eax = &quot;0000:0000:0000:0000:0000:0000:0000:1011&quot;<br />
  106. cpuid.0.ebx = &quot;0111:0101:0110:1110:0110:0101:0100:0111&quot;<br />
  107. cpuid.0.ecx = &quot;0110:1100:0110:0101:0111:0100:0110:1110&quot;<br />
  108. cpuid.0.edx = &quot;0100:1001:0110:0101:0110:1110:0110:1001&quot;<br />
  109. cpuid.1.eax = &quot;0000:0000:0000:0001:0000:0110:0111:0001&quot;<br />
  110. cpuid.1.ebx = &quot;0000:0010:0000:0001:0000:1000:0000:0000&quot;<br />
  111. cpuid.1.ecx = &quot;1000:0010:1001:1000:0010:0010:0000:0011&quot;<br />
  112. cpuid.1.edx = &quot;0000:0111:1000:1011:1111:1011:1111:1111&quot;<br />
  113. smbios.reflectHost = &quot;TRUE&quot;<br />
  114. hw.model = &quot;MacBookPro14,3&quot;<br />
  115. board-id = &quot;Mac-551B86E5744E2388&quot;</p>
  116. </li>
  117. <li>Right click on the MacOS12 VM &gt; Power On</li>
  118. </ol>
  119. <h2>Installing MacOS Monterey</h2>
  120. <ol>
  121. <li>After an initialization sequence the MAC OS Setup should start</li>
  122. <li>Select a Language &gt; Click the next arrow</li>
  123. <li>Select Disk Utility</li>
  124. <li>Select the VMware Virtual SATA Hard Drive Media &gt; Click Erase</li>
  125. <li>Name the drive OS12 &gt; Set the Format to APFS &gt; Click Erase</li>
  126. <li>Click Done &gt; Close Disk Utility</li>
  127. <li>Click Install macOS Monterey</li>
  128. <li>Click Continue &gt; Click Agree &gt; Click Agree again</li>
  129. <li>Select the OS12 disk &gt; Click Install</li>
  130. <li>Wait while Mac OS installs files, the VM will reboot several times</li>
  131. <li>Select your Country &gt; Click Continue</li>
  132. <li>Confirm your languages and keyboard layout &gt; Click Continue</li>
  133. <li>Click Not Now on the Accessibility screen</li>
  134. <li>Click Continue on the Data &amp; Privacy screen</li>
  135. <li>Select Not Now on the Migration Assistant screen</li>
  136. <li>Select Set Up Later and then Skip on the Apple ID screen</li>
  137. <li>Click Agree &gt; Agree again</li>
  138. <li>Enter a name, user name, password &gt; Click Continue</li>
  139. <li>Click Customize Settings</li>
  140. <li>Click Continue &gt; Select Use or Don&#39;t Use for Location Services</li>
  141. <li>Pick a timezone &gt; Click Continue</li>
  142. <li>Choose whether to share analytics with Apple &gt; Click Continue</li>
  143. <li>Click Set Up Later on the Screen Time screen</li>
  144. <li>Uncheck the Enable Ask Siri box &gt; Click Continue</li>
  145. <li>Pick a theme &gt; Click Continue</li>
  146. <li>Welcome to MacOS 12 Monterey</li>
  147. </ol>
  148. <h2>Install VMware Tools (optional, but recommended)</h2>
  149. <ol>
  150. <li>On the VMware toolbar click VM &gt; Settings &gt; CD/DVD</li>
  151. <li>Click Browse next to ISO Image File &gt; Browse to the extracted Unlocker files \tools &gt; Select darwin.iso</li>
  152. <li>Click the Connect checkbox</li>
  153. <li>Inside the VM, double click the mounted VMware tools and run the installer</li>
  154. </ol>
  155. </div>
  156. </div>
  157. </body>
  158. </html>