0656: Running a MacOS Catalina 10.15 VM in VMware
This commit is contained in:
parent
e80da1f22c
commit
1be8e9cfaa
1 changed files with 165 additions and 0 deletions
165
0656.html
Normal file
165
0656.html
Normal file
|
@ -0,0 +1,165 @@
|
|||
<!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 MacOS Catalina 10.15 VM in VMware</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){
|
||||
if(!$(this).hasClass('noCheckbox')){
|
||||
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="'+ $.trim(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,span.copy-animation-ps').removeClass('copy-animation copy-animation-ps');
|
||||
try {
|
||||
if($('#'+ theButton.attr('rel')).parent('div').hasClass('PS')){
|
||||
$('#'+ theButton.attr('rel')).addClass('copy-animation-ps');
|
||||
} else if($('#'+ theButton.attr('rel')).parent('div').hasClass('CMD')){
|
||||
$('#'+ theButton.attr('rel')).addClass('copy-animation-cmd');
|
||||
} else {
|
||||
$('#'+ 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 MacOS Catalina 10.15 VM in VMware</h1>
|
||||
</div>
|
||||
<div></div>
|
||||
<div id="content">
|
||||
<h2>Installing and Configuring VMware</h2>
|
||||
|
||||
<ol>
|
||||
<li>D<label for="cb_li_364664_0">ownload a MacOS Catalina .iso </label><label for="cb_li_364664_0"><a href="https://archive.org/search.php?query=MacOS%20iso%20collection&and[]=mediatype%3A%22software%22" target="_blank">Download</a></label></li>
|
||||
<li>Download VMware Workstation Player <a href="https://www.vmware.com/products/workstation-player.html" target="_blank">Download</a></li>
|
||||
<li>Download MacOS Unlocker for VMware Workstation <a href="https://github.com/paolo-projects/auto-unlocker/releases" target="_blank">Download</a></li>
|
||||
<li>Install VMware Workstation Player, accepting the defaults</li>
|
||||
<li>Extract the downloaded MacOS Unlocker for VMware Workstation</li>
|
||||
<li>Inside the extracted file, right click Unlocker.exe > Run as administrator</li>
|
||||
<li>Wait for the command prompt to close before continuing</li>
|
||||
</ol>
|
||||
|
||||
<h2>Creating the Catalina VM</h2>
|
||||
|
||||
<ol>
|
||||
<li>Launch VMware Workstation Player</li>
|
||||
<li>Click Continue to use Workstation Player for free for non-commercial use</li>
|
||||
<li>Click Finish</li>
|
||||
<li>Click Create a New Virtual Machine on the right side of the application</li>
|
||||
<li>Select Installer disc image file (iso) > Browse to and select the downloaded MacOS Catalina .iso > Click Next</li>
|
||||
<li>Select Apple Mac OS X and macOS 10.15 > Click Next</li>
|
||||
<li>Name the VM MacOSX and set the path to store the VM files > Click Next</li>
|
||||
<li>Adjust the disk size if necessary > Click Next</li>
|
||||
<li>Click Finish<br />
|
||||
<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>
|
||||
<p>mc.version = "0"<br />
|
||||
cpuid.0.eax = "0000:0000:0000:0000:0000:0000:0000:1011"<br />
|
||||
cpuid.0.ebx = "0111:0101:0110:1110:0110:0101:0100:0111"<br />
|
||||
cpuid.0.ecx = "0110:1100:0110:0101:0111:0100:0110:1110"<br />
|
||||
cpuid.0.edx = "0100:1001:0110:0101:0110:1110:0110:1001"<br />
|
||||
cpuid.1.eax = "0000:0000:0000:0001:0000:0110:0111:0001"<br />
|
||||
cpuid.1.ebx = "0000:0010:0000:0001:0000:1000:0000:0000"<br />
|
||||
cpuid.1.ecx = "1000:0010:1001:1000:0010:0010:0000:0011"<br />
|
||||
cpuid.1.edx = "0000:0111:1000:1011:1111:1011:1111:1111"<br />
|
||||
smbios.reflectHost = "TRUE"<br />
|
||||
hw.model = "MacBookPro14,3"<br />
|
||||
board-id = "Mac-551B86E5744E2388"</p>
|
||||
</li>
|
||||
<li>Right click on the MacOSX VM > Power On</li>
|
||||
</ol>
|
||||
|
||||
<h2>Installing MacOS Catalina</h2>
|
||||
|
||||
<ol>
|
||||
<li>After an initialization sequence the Mac OS Setup should start</li>
|
||||
<li>Select a Language > Click the next arrow</li>
|
||||
<li>Select Disk Utility</li>
|
||||
<li>Select the VMware Virtual SATA Hard Drive Media > Click Erase</li>
|
||||
<li>Name the drive MacOS > 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 MacOS disk > Click Install</li>
|
||||
<li>Wait while Mac OS 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 Continue on the Data & Privacy screen</li>
|
||||
<li>Select Don't transfer any information now > Click Continue</li>
|
||||
<li>Select Set Up Later > Click Continue > Click Skip</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>Uncheck the Send Mac Analytics box > 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 10.15 Catalina</li>
|
||||
</ol>
|
||||
|
||||
<h2>Install VMware Tools (optional, but recommended)</h2>
|
||||
|
||||
<ol>
|
||||
<li>On the VMware toolbar click VM > Settings > CD/DVD</li>
|
||||
<li>Click Browse next to ISO Image File > Browse to the extracted Unlocker files \tools > Select darwin.iso</li>
|
||||
<li>Click the Connect checkbox</li>
|
||||
<li>Inside the VM, double click the mounted VMware tools and run the installer</li>
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Add table
Reference in a new issue