|
@@ -0,0 +1,145 @@
|
|
|
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
+ <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|
|
+ <head>
|
|
|
+ <title>Running a Mac OS 11 Big Sur VM in Virtualbox</title>
|
|
|
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
+ <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
|
|
|
+ <script type="text/javascript">
|
|
|
+ $(function(){
|
|
|
+ $('textarea').each(function(i,e){
|
|
|
+ theTextarea = $(this);
|
|
|
+ theTextarea.height((theTextarea[0].scrollHeight-5) +'px');
|
|
|
+ });
|
|
|
+
|
|
|
+ $('li').each(function(i,e){
|
|
|
+ var uuid = 'li_' + Math.floor(Math.random() * Math.floor(1000000)).toString() + '_' + i.toString();
|
|
|
+ $(this).contents().wrap('<span id="'+ uuid +'"><label for="cb_'+ uuid +'"></label></span>');
|
|
|
+ $(this).prepend('<input type="checkbox" class="completeBox" id="cb_' + uuid +'" rel="'+ uuid +'" />')
|
|
|
+ });
|
|
|
+
|
|
|
+ $('code,div.codeBlock,textarea.codeBlock').each(function(i,e){
|
|
|
+ theElement = $(this);
|
|
|
+ var lines = theElement.html().split("\n");
|
|
|
+ theElement.empty();
|
|
|
+ for(l=0;l<lines.length;l++){
|
|
|
+ if($.trim(lines[l]) != '' && $.trim(lines[l]).substr(0,1) != '#' && $.trim(lines[l]).indexOf(' #') == -1 && lines[l].substr(0, 4).toUpperCase() != 'REM '){
|
|
|
+ theElement.append('<input type="image" src="images/clipboard.png" value="" class="copy-text" rel="copy_'+ i +'_'+ l +'" data-clipboard-text="'+ lines[l].replace(/"/g, '"') +'" /><span id="copy_'+ i +'_'+ l +'">'+ lines[l] +'</span>');
|
|
|
+ } else {
|
|
|
+ theElement.append(lines[l]);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ $(document).on('click','input.copy-text',function(){
|
|
|
+ theButton = $(this);
|
|
|
+ $('input.copy-text').attr('src','images/clipboard.png');
|
|
|
+ $('span.copy-animation').removeClass('copy-animation');
|
|
|
+ try {
|
|
|
+ $('#'+ theButton.attr('rel')).addClass('copy-animation');
|
|
|
+ navigator.clipboard.writeText(theButton.data('clipboard-text').replace(/<[^>]*>?/gm, ''));
|
|
|
+ theButton.attr('src','images/clipboard_active.png');
|
|
|
+ } catch(err) {
|
|
|
+ }
|
|
|
+ return false;
|
|
|
+ });
|
|
|
+
|
|
|
+ $(document).on('click','input.completeBox',function(){
|
|
|
+ theBox = $(this);
|
|
|
+ $('#'+ theBox.attr('rel')).addClass('strikethrough');
|
|
|
+ theBox.prop('disabled',true);
|
|
|
+ theBox.parent('li').prevAll().each(function(i,e){
|
|
|
+ theLI = $(this);
|
|
|
+ if(theLI.find('input[type=checkbox]').not(':checked')){
|
|
|
+ $('#'+ theLI.find('input[type=checkbox]').attr('rel')).addClass('strikethrough');
|
|
|
+ theLI.find('input[type=checkbox]').prop('checked',true).prop('disabled',true);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+
|
|
|
+ if(window.self !== window.top){
|
|
|
+ window.parent.$('iframe.stepsFrame').height((this['scrollingElement']['scrollHeight']+20) +'px');
|
|
|
+ }
|
|
|
+ });
|
|
|
+ </script>
|
|
|
+ <link href="css/steps.css" rel="stylesheet" type="text/css" />
|
|
|
+ </head>
|
|
|
+ <body>
|
|
|
+ <div id="gridContainer">
|
|
|
+ <div class="topMargin"></div>
|
|
|
+ <div id="listName" class="topMargin">
|
|
|
+ <h1>Running a Mac OS 11 Big Sur VM in Virtualbox</h1>
|
|
|
+ </div>
|
|
|
+ <div></div>
|
|
|
+ <div id="content">
|
|
|
+ <ol>
|
|
|
+ <li>Locate a Mac OS Big Sur iso</li>
|
|
|
+ <li>Launch Virtualbox</li>
|
|
|
+ <li>Create a New VM by selecting Machine > New
|
|
|
+ <p>Name: MAC OS 11<br />
|
|
|
+ Machine Folder: C:\VMs<br />
|
|
|
+ Type: MAC OS X<br />
|
|
|
+ Version: Mac OS X (64-bit)<br />
|
|
|
+ Memory Size: 4096 MB<br />
|
|
|
+ Hard disk: Create a virtual hard disk now</p>
|
|
|
+ </li>
|
|
|
+ <li>Click Create</li>
|
|
|
+ <li>On the Create Virtual Hard Disk dialog
|
|
|
+ <p>Name the virtual disk image MAC OS 11.vdi<br />
|
|
|
+ File size: 50.00 GB<br />
|
|
|
+ Hard disk file type: VDI<br />
|
|
|
+ Storage on physical hard disk: Dynamically Allocated</p>
|
|
|
+ </li>
|
|
|
+ <li>Click Create</li>
|
|
|
+ <li>Select the VM and Click Settings</li>
|
|
|
+ <li>Select System > Click the Processor tab > Set Processor(s) to at least 2</li>
|
|
|
+ <li>Select Display > Slide Video Memory to 128 MB</li>
|
|
|
+ <li>Select USB > Select USB 3.0</li>
|
|
|
+ <li>Select Storage > Create a new SATA Controller</li>
|
|
|
+ <li>Click the Choose disk button on the optical drive</li>
|
|
|
+ <li>Click the Add button > Browse to and select the MAC OS 11 .iso file</li>
|
|
|
+ <li>Click Choose</li>
|
|
|
+ <li>Click OK</li>
|
|
|
+ <li>Right Click the Start Button > Command Prompt (Admin) > Paste in the following commands
|
|
|
+ <div class="codeBlock">cd "%programfiles%\Oracle\VirtualBox\"<br />
|
|
|
+ VBoxManage.exe modifyvm "Mac OS 11" –-cpuidset 00000001 000106e5 00100800 0098e3fd bfebfbff<br />
|
|
|
+ VBoxManage setextradata "Mac OS 11" "VBoxInternal/Devices/efi/0/Config/DmiSystemProduct" "iMac19,1"<br />
|
|
|
+ VBoxManage setextradata "Mac OS 11" "VBoxInternal/Devices/efi/0/Config/DmiSystemVersion" "1.0"<br />
|
|
|
+ VBoxManage setextradata "Mac OS 11" "VBoxInternal/Devices/efi/0/Config/DmiBoardProduct" "Mac-AA95B1DDAB278B95"<br />
|
|
|
+ VBoxManage setextradata "Mac OS 11" "VBoxInternal/Devices/smc/0/Config/DeviceKey" "ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc"<br />
|
|
|
+ VBoxManage setextradata "Mac OS 11" "VBoxInternal/Devices/smc/0/Config/GetKeyFromRealSMC" 1</div>
|
|
|
+ </li>
|
|
|
+ <li>If you are running an AMD processor also run the following command:
|
|
|
+ <div class="codeBlock">VBoxManage modifyvm "Mac OS 11" --cpu-profile "Intel Core i7-6700K"</div>
|
|
|
+ </li>
|
|
|
+ <li>Make sure the MAC OS 11 VM is selected and click Start > Normal</li>
|
|
|
+ <li>After a long initialization sequence the MAC OS Setup should start</li>
|
|
|
+ <li>Select a language > Click the arrow</li>
|
|
|
+ <li>Select Disk Utility</li>
|
|
|
+ <li>Select the VBOX HARDDISK > Click Erase</li>
|
|
|
+ <li>Name the drive OS11 > Set the Format to APFS > Click Erase</li>
|
|
|
+ <li>Click Done > Close Disk Utility</li>
|
|
|
+ <li>Click Install macOS</li>
|
|
|
+ <li>Click Continue > Click Agree > Click Agree again</li>
|
|
|
+ <li>Select the OS11 disk > Click Install</li>
|
|
|
+ <li>Wait while Mac OS 11 installs files, the VM will reboot several times</li>
|
|
|
+ <li>Select your Country > Click Continue</li>
|
|
|
+ <li>Confirm your languages and keyboard layout > Click Continue</li>
|
|
|
+ <li>Click Not Now on the Accessibility screen</li>
|
|
|
+ <li>Click Continue on the Data & Privacy screen</li>
|
|
|
+ <li>Select Not Now on the Migration Assistant screen</li>
|
|
|
+ <li>Select Set Up Later and then Skip on the Apple ID screen</li>
|
|
|
+ <li>Click Agree > Agree again</li>
|
|
|
+ <li>Enter a name, user name, password > Click Continue</li>
|
|
|
+ <li>Click Customize Settings</li>
|
|
|
+ <li>Click Continue > Select Use or Don't Use for Location Services</li>
|
|
|
+ <li>Pick a timezone > Click Continue</li>
|
|
|
+ <li>Click Set Up Later on the Screen Time screen</li>
|
|
|
+ <li>Uncheck the Enable Ask Siri box > Click Continue</li>
|
|
|
+ <li>Pick a theme > Click Continue</li>
|
|
|
+ <li>Welcome to MacOS 11 Big Sur</li>
|
|
|
+</ol>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </body>
|
|
|
+ </html>
|
|
|
+
|