0147.html 4.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Running a Mac OS 11 Big Sur VM in Virtualbox</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="VirtualBox,Virtual Machine,OSX,i12bretro,How To,Tutorial,Apple,OS 11,Big Sur">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Running a Mac OS 11 Big Sur VM in Virtualbox">
  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" src="includes/js/steps.js"></script>
  13. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  14. </head>
  15. <body>
  16. <div id="gridContainer">
  17. <div class="topMargin"></div>
  18. <div id="listName" class="topMargin">
  19. <h1>Running a Mac OS 11 Big Sur VM in Virtualbox</h1>
  20. </div>
  21. <div></div>
  22. <div id="content">
  23. <ol>
  24. <li>Locate a Mac OS Big Sur iso</li>
  25. <li>Launch Virtualbox</li>
  26. <li>Create a New VM by selecting Machine &gt; New
  27. <p>Name: MAC OS 11<br />
  28. Machine Folder: C:\VMs<br />
  29. Type: MAC OS X<br />
  30. Version: Mac OS X (64-bit)<br />
  31. Memory Size: 4096 MB<br />
  32. Hard disk: Create a virtual hard disk now</p>
  33. </li>
  34. <li>Click Create</li>
  35. <li>On the Create Virtual Hard Disk dialog
  36. <p>Name the virtual disk image MAC OS 11.vdi<br />
  37. File size: 50.00 GB<br />
  38. Hard disk file type: VDI<br />
  39. Storage on physical hard disk: Dynamically Allocated</p>
  40. </li>
  41. <li>Click Create</li>
  42. <li>Select the VM and Click Settings</li>
  43. <li>Select System &gt; Click the Processor tab &gt; Set Processor(s) to at least 2</li>
  44. <li>Select Display &gt; Slide Video Memory to 128 MB</li>
  45. <li>Select USB &gt; Select USB 3.0</li>
  46. <li>Select Storage &gt; Create a new SATA Controller</li>
  47. <li>Click the Choose disk button on the optical drive</li>
  48. <li>Click the Add button &gt; Browse to and select the MAC OS 11 .iso file</li>
  49. <li>Click Choose</li>
  50. <li>Click OK</li>
  51. <li>Right Click the Start Button &gt; Command Prompt (Admin) &gt; Paste in the following commands
  52. <div class="codeBlock masked">cd &quot;%programfiles%\Oracle\VirtualBox\&quot;<br />
  53. VBoxManage.exe modifyvm &quot;Mac OS 11&quot; &ndash;-cpuidset 00000001 000106e5 00100800 0098e3fd bfebfbff<br />
  54. VBoxManage setextradata &quot;Mac OS 11&quot; &quot;VBoxInternal/Devices/efi/0/Config/DmiSystemProduct&quot; &quot;iMac19,1&quot;<br />
  55. VBoxManage setextradata &quot;Mac OS 11&quot; &quot;VBoxInternal/Devices/efi/0/Config/DmiSystemVersion&quot; &quot;1.0&quot;<br />
  56. VBoxManage setextradata &quot;Mac OS 11&quot; &quot;VBoxInternal/Devices/efi/0/Config/DmiBoardProduct&quot; &quot;Mac-AA95B1DDAB278B95&quot;<br />
  57. VBoxManage setextradata &quot;Mac OS 11&quot; &quot;VBoxInternal/Devices/smc/0/Config/DeviceKey&quot; &quot;ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc&quot;<br />
  58. VBoxManage setextradata &quot;Mac OS 11&quot; &quot;VBoxInternal/Devices/smc/0/Config/GetKeyFromRealSMC&quot; 1</div>
  59. </li>
  60. <li>If you are running an AMD processor also run the following command:
  61. <div class="codeBlock">VBoxManage modifyvm &quot;Mac OS 11&quot; --cpu-profile &quot;Intel Core i7-6700K&quot;</div>
  62. </li>
  63. <li>Make sure the MAC OS 11 VM is selected and click Start &gt; Normal</li>
  64. <li>After a long initialization sequence the MAC OS Setup should start</li>
  65. <li>Select a language &gt; Click the arrow</li>
  66. <li>Select Disk Utility</li>
  67. <li>Select the VBOX HARDDISK &gt; Click Erase</li>
  68. <li>Name the drive OS11 &gt; Set the Format to APFS &gt; Click Erase</li>
  69. <li>Click Done &gt; Close Disk Utility</li>
  70. <li>Click Install macOS</li>
  71. <li>Click Continue &gt; Click Agree &gt; Click Agree again</li>
  72. <li>Select the OS11 disk &gt; Click Install</li>
  73. <li>Wait while Mac OS 11 installs files, the VM will reboot several times</li>
  74. <li>Select your Country &gt; Click Continue</li>
  75. <li>Confirm your languages and keyboard layout &gt; Click Continue</li>
  76. <li>Click Not Now on the Accessibility screen</li>
  77. <li>Click Continue on the Data &amp; Privacy screen</li>
  78. <li>Select Not Now on the Migration Assistant screen</li>
  79. <li>Select Set Up Later and then Skip on the Apple ID screen</li>
  80. <li>Click Agree &gt; Agree again</li>
  81. <li>Enter a name, user name, password &gt; Click Continue</li>
  82. <li>Click Customize Settings</li>
  83. <li>Click Continue &gt; Select Use or Don&#39;t Use for Location Services</li>
  84. <li>Pick a timezone &gt; Click Continue</li>
  85. <li>Click Set Up Later on the Screen Time screen</li>
  86. <li>Uncheck the Enable Ask Siri box &gt; Click Continue</li>
  87. <li>Pick a theme &gt; Click Continue</li>
  88. <li>Welcome to MacOS 11 Big Sur</li>
  89. </ol>
  90. </div>
  91. </div>
  92. </body>
  93. </html>