0659.html 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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 11 Big Sur on VMware ESXi</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. if(!$(this).hasClass('noCheckbox')){
  15. var uuid = 'li_' + Math.floor(Math.random() * Math.floor(1000000)).toString() + '_' + i.toString();
  16. $(this).contents().wrap('<span id="'+ uuid +'"><label for="cb_'+ uuid +'"></label></span>');
  17. $(this).prepend('<input type="checkbox" class="completeBox" id="cb_' + uuid +'" rel="'+ uuid +'" />')
  18. }
  19. });
  20. $('code,div.codeBlock,textarea.codeBlock').each(function(i,e){
  21. theElement = $(this);
  22. var lines = theElement.html().split("\n");
  23. theElement.empty();
  24. for(l=0;l<lines.length;l++){
  25. if($.trim(lines[l]) != '' && $.trim(lines[l]).substr(0,1) != '#' && $.trim(lines[l]).indexOf(' #') == -1 && lines[l].substr(0, 4).toUpperCase() != 'REM '){
  26. 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>');
  27. } else {
  28. theElement.append(lines[l]);
  29. }
  30. }
  31. });
  32. $(document).on('click','input.copy-text',function(){
  33. theButton = $(this);
  34. $('input.copy-text').attr('src','images/clipboard.png');
  35. $('span.copy-animation,span.copy-animation-ps').removeClass('copy-animation copy-animation-ps');
  36. try {
  37. if($('#'+ theButton.attr('rel')).parent('div').hasClass('PS')){
  38. $('#'+ theButton.attr('rel')).addClass('copy-animation-ps');
  39. } else if($('#'+ theButton.attr('rel')).parent('div').hasClass('CMD')){
  40. $('#'+ theButton.attr('rel')).addClass('copy-animation-cmd');
  41. } else {
  42. $('#'+ theButton.attr('rel')).addClass('copy-animation');
  43. }
  44. navigator.clipboard.writeText(theButton.data('clipboard-text').replace(/<[^>]*>?/gm, ''));
  45. theButton.attr('src','images/clipboard_active.png');
  46. } catch(err) {
  47. }
  48. return false;
  49. });
  50. $(document).on('click','input.completeBox',function(){
  51. theBox = $(this);
  52. $('#'+ theBox.attr('rel')).addClass('strikethrough');
  53. theBox.prop('disabled',true);
  54. theBox.parent('li').prevAll().each(function(i,e){
  55. theLI = $(this);
  56. if(theLI.find('input[type=checkbox]').not(':checked')){
  57. $('#'+ theLI.find('input[type=checkbox]').attr('rel')).addClass('strikethrough');
  58. theLI.find('input[type=checkbox]').prop('checked',true).prop('disabled',true);
  59. }
  60. });
  61. });
  62. if(window.self !== window.top){
  63. window.parent.$('iframe.stepsFrame').height((this['scrollingElement']['scrollHeight']+20) +'px');
  64. }
  65. });
  66. </script>
  67. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  68. </head>
  69. <body>
  70. <div id="gridContainer">
  71. <div class="topMargin"></div>
  72. <div id="listName" class="topMargin">
  73. <h1>Running a MacOS 11 Big Sur on VMware ESXi</h1>
  74. </div>
  75. <div></div>
  76. <div id="content">
  77. <h2>Downloads and Configuring ESXi</h2>
  78. <ol>
  79. <li>Download a MacOS Big Sur .iso <a href="https://archive.org/search.php?query=MacOS%20Collection&amp;and[]=mediatype%3A%22software%22" target="_blank">Download</a></li>
  80. <li>Download Unlocker for VMware ESXi <a href="https://github.com/hugepants/esxi-unlocker/releases/" target="_blank">Download</a></li>
  81. <li>Download WinSCP <a href="https://winscp.net/eng/downloads.php" target="_blank">Download</a></li>
  82. <li>Extract the downloaded Unlocker for VMware ESXi</li>
  83. <li>Rename the extracted folder unlocker</li>
  84. <li>Log into the ESXi web UI</li>
  85. <li>Enable the SSH service by selecting Actions &gt; Services &gt; Enable Secure Shell (SSH)</li>
  86. <li>Extract WinSCP and run the executable</li>
  87. <li>Connect to the ESXi host IP address via WinSCP</li>
  88. <li>Copy the extracted Unlocker folder to the ESXi host /root directory</li>
  89. <li>Connect to the ESXi host via SSH</li>
  90. <li>Run the following commands to install ESXi Unlocker
  91. <div class="codeBlock"># change directory to unlocker<br />
  92. cd /unlocker<br />
  93. # make the install script executable<br />
  94. chmod +x ./esxi-install.sh<br />
  95. # run the install script<br />
  96. ./esxi-install.sh<br />
  97. # reboot esxi host<br />
  98. reboot</div>
  99. </li>
  100. </ol>
  101. <h2>Creating the Big Sur VM</h2>
  102. <ol>
  103. <li>Log into the ESXi web UI</li>
  104. <li>In the left navigation pane, right click on Virtual Machines &gt; Create/Register VM</li>
  105. <li>Select Create a new virtual machine &gt; Click Next</li>
  106. <li>Name the VM MacOS 11 &gt; Set the Guest OS family to Mac OS and Guest OS Version to Apple MacOS 10.14 (64-bit) &gt; Click Next</li>
  107. <li>Select the storage datastore to use &gt; Click Next</li>
  108. <li>Set the Memory to at least 4096</li>
  109. <li>Set Hard disk 1 to 50 GB or more &gt; Expand Hard disk 1 and make sure the </li>
  110. <li>Expand CD/DVD Drive 1 &gt; Make sure Datastore ISO file is selected &gt; Click Browse next to the CD/DVD Media field</li>
  111. <li>Click Upload &gt; Browse to and select the Mac OS installation ISO</li>
  112. <li>Once the upload completes, click the Mac OS ISO to highlight it &gt; Click Select</li>
  113. <li>Back on the Hardware customization screen click Next</li>
  114. <li>Review the summary provided and click Finish Click the new MacOS 11 VM Click Power on at the top of the page</li>
  115. </ol>
  116. <h2>Installing MacOS Big Sur</h2>
  117. <ol>
  118. <li>After an initialization sequence the MAC OS Setup should start</li>
  119. <li>Select a Language &gt; Click the next arrow</li>
  120. <li>Select Disk Utility</li>
  121. <li>Select the VMware Virtual SATA Hard Drive Media &gt; Click Erase</li>
  122. <li>Name the drive OS11 &gt; Set the Format to APFS &gt; Click Erase</li>
  123. <li>Click Done &gt; Close Disk Utility</li>
  124. <li>Click Install macOS Big Sur</li>
  125. <li>Click Continue &gt; Click Agree &gt; Click Agree again</li>
  126. <li>Select the OS11 disk &gt; Click Install</li>
  127. <li>Wait while Mac OS installs files, the VM will reboot several times</li>
  128. <li>Select your Country &gt; Click Continue</li>
  129. <li>Confirm your languages and keyboard layout &gt; Click Continue</li>
  130. <li>Click Not Now on the Accessibility screen</li>
  131. <li>Click Continue on the Data &amp; Privacy screen</li>
  132. <li>Select Not Now on the Migration Assistant screen</li>
  133. <li>Select Set Up Later and then Skip on the Apple ID screen</li>
  134. <li>Click Agree &gt; Agree again</li>
  135. <li>Enter a name, user name, password &gt; Click Continue</li>
  136. <li>Click Customize Settings</li>
  137. <li>Click Continue &gt; Select Use or Don&#39;t Use for Location Services</li>
  138. <li>Pick a timezone &gt; Click Continue</li>
  139. <li>Choose whether to share analytics with Apple &gt; Click Continue</li>
  140. <li>Click Set Up Later on the Screen Time screen</li>
  141. <li>Uncheck the Enable Ask Siri box &gt; Click Continue</li>
  142. <li>Pick a theme &gt; Click Continue</li>
  143. <li>Welcome to MacOS 11 Big sur</li>
  144. </ol>
  145. <h2>Install VMware Tools (optional, but recommended)</h2>
  146. <ol>
  147. <li>Download MacOS Unlocker for VMware Workstation <a href="https://github.com/paolo-projects/auto-unlocker/releases" target="_blank">Download</a></li>
  148. <li>Extract the downloaded .zip file</li>
  149. <li>Navigate into the extracted folder</li>
  150. <li>Hold SHIFT and right click in the white space &gt; Open PowerShell window here...</li>
  151. <li>Run the following command to download VMware Tools for MacOS
  152. <div class="codeBlock PS">.\unlocker.exe --download-tools</div>
  153. </li>
  154. <li>Back in the ESXi web UI select Storage from the left navigation menu</li>
  155. <li>Click the Datastore browser icon at the top of the main content pane</li>
  156. <li>Click Upload &gt; Browse to and select the darwin.iso</li>
  157. <li>Once the upload completes click Close to close out of the Datastore browser</li>
  158. <li>Select the MacOS 11 VM &gt; Actions &gt; Edit settings</li>
  159. <li>Attach darwin.iso to CD/DVD drive 1</li>
  160. <li>Inside the VM, double click the mounted VMware tools and run the installer</li>
  161. </ol>
  162. </div>
  163. </div>
  164. </body>
  165. </html>