0763.html 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Create Almost Any MacOS Installation Media [Developer Betas | Old Versions]</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="ISO,Installation,MacOS,Media,Virtual Machine,Monterey,Big Sur,Ventura,MacOSX,OSX,Installation ISO,Installation Media,GibMacOS,Install Guide,Home Lab,Creation,Hypervisor,VM,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Create Almost Any MacOS Installation Media [Developer Betas | Old Versions]">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="09/30/2022 10:28:22 AM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>Create Almost Any MacOS Installation Media [Developer Betas | Old Versions]</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>Things You Will need</h2>
  26. <ul>
  27. <li>An existing MacOS Device or VM</li>
  28. <li>30-40 GB of free disk space</li>
  29. </ul>
  30. <h2>Downloading MacOS Installers</h2>
  31. <ol>
  32. <li>Download gibMacOS <a href="https://github.com/corpnewt/gibMacOS" target="_blank">Download</a></li>
  33. <li>Extract the downloaded .zip file</li>
  34. <li>Double click the gibMacOS.command file &gt; Click Open to confirm</li>
  35. <li>If prompted to install Python, type Y &gt; Press Enter</li>
  36. <li>Use the keyboard and on screen instructions to navigate the menus and download the desired version of MacOS</li>
  37. </ol>
  38. <h2>Creating USB Installation Media</h2>
  39. <ol>
  40. <li>Input a USB flash drive, 16GB or larger</li>
  41. <li>In Finder, navigate to the gibMacOS folder /</li>
  42. <li>Double click the InstallAssistant.pkg file to install it</li>
  43. <li>Follow the prompts of the installer to complete the setup</li>
  44. <li>Start LaunchPad from the dock</li>
  45. <li>Search disk utility &gt; Click Disk Utility to launch it</li>
  46. <li>Select the USB flash drive on the left side</li>
  47. <li>Select Erase &gt; Set the Name to MacOSUSB and the Format to ExFAT &gt; Click Erase</li>
  48. <li>Start LaunchPad from the dock</li>
  49. <li>Search terminal &gt; Click Terminal to launch it</li>
  50. <li>Run the following commands in terminal, altering the MacOS Installer name as needed
  51. <div class="codeBlock CMD"># write the installation files to USB flash media<br />
  52. sudo /Applications/Install\ macOS\ Ventura\ beta.app/Contents/Resources/createinstallmedia --volume /Volumes/MacOSUSB</div>
  53. </li>
  54. <li>When prompted, enter your password</li>
  55. <li>Type Y and press Enter to confirm the action</li>
  56. </ol>
  57. <h2>Creating a Bootable .iso</h2>
  58. <ol>
  59. <li>Start LaunchPad from the dock</li>
  60. <li>Search terminal &gt; Click Terminal to launch it</li>
  61. <li>Run the following commands in terminal, altering the MacOS Installer name as needed
  62. <div class="codeBlock CMD"># create temporary disk image, make sure its larger than the downloaded installer<br />
  63. hdiutil create -o /tmp/macOS -size 13800m -volname macOS -layout SPUD -fs HFS+J<br />
  64. # mount the temporary disk image<br />
  65. hdiutil attach /tmp/macOS.dmg -noverify -mountpoint /Volumes/macOSISO<br />
  66. # use createinstallationmedia utility to copy files<br />
  67. sudo /Applications/Install\ macOS\ Ventura\ beta.app/Contents/Resources/createinstallmedia --volume /Volumes/macOSISO --nointeraction<br />
  68. # unmount the temporary disk image, alter the OS name as needed<br />
  69. hdiutil detach -force /Volumes/Install\ macOS\ Ventura\ beta<br />
  70. # convert the disk image to .iso<br />
  71. hdiutil convert /tmp/macOS.dmg -format UDTO -o ~/Desktop/macOS.cdr<br />
  72. # change the extension from .cdr to .iso<br />
  73. mv ~/Desktop/macOS.cdr ~/Desktop/macOS.iso</div>
  74. </li>
  75. </ol> </div>
  76. </div>
  77. </body>
  78. </html>