0623.html 8.5 KB

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