인디노트

OS X 설치 이미지 변경 등 본문

개발 플랫폼 및 언어

OS X 설치 이미지 변경 등

인디개발자 2023. 3. 23. 21:12

https://github.com/paolo-projects/unlocker/releases/tag/3.0.4

VM 에 OS X 설치 할 수 있도록 해 주는...

 

Release Unlocker 3.0.4 · paolo-projects/unlocker

Changelog Fixed tools download url Changed linux script to call python3 instead of the generic python Removed the binaries Windows script now runs the globally installed python, or the bundled one...

github.com

 

https://comterman.tistory.com/2387

 

VMware 가상 머신에 맥OS 설치 과정. 윈도우 운영체제 위에 맥OS 설치

VMware에 맥OS 설치, 맛보기 제 블로그에는 애플 관련 기기에 대한 얘기가 거의 없습니다. 사실 10여년 전 미국에서 구입한 아이패드 1세대, 64GB 셀룰러 모델(당시 최상위 모델)을 몇 년간 잘 쓰던 중

comterman.tistory.com

 

10. macOS Catalina(10.15.7)

 

11. macOS Big Sur 11.7.1 (20G918)

 

12. macOS Monterey 12.6.3 (21G419)

 

13. macOS Ventura 13.2.1 (22D68) 정식 버전 new

 

 

 

 

  1. First, download MacOS Mojave installer, or the MacOS Catalina installer (or the installer you wish to turn into an ISO) from the Mac App Store
  2. When the “Install MacOS Mojave.app” or “Install MacOS Catalina.app” application is fully downloaded and within the /Applications folder, proceed
  3. Next, open the Terminal application
  4. Create a disk image DMG file buy issuing the following command:
    1. hdiutil create -o /tmp/MacOSBigSur -size 16500m -volname MacOSBigSur -layout SPUD -fs HFS+J
  5. Mount the created DMG disk image as follows:
    1. hdiutil attach /tmp/MacOSBigSur.dmg -noverify -mountpoint /Volumes/MacOSBigSur
  6. Next we will use createinstallmedia to create the macOS installer application on the mounted volume:
    1. sudo /Applications/Install\ macOS\ Big\ Sur.app/Contents/Resources/createinstallmedia --volume /Volumes/MacOSBigSur --nointeraction
  7. When createinstallmedia has finished, next you can unmount the volume you just created:
    1. hdiutil detach /Volumes/MacOSBigSur/
  8. Now we convert the DMG disk image file to an ISO disk image file (technically a CDR file but it’s the same as an iso)
    1. mv /tmp/MacOSBigSur.dmg ~/Desktop/
  9. Finally, we rename the CDR file extension to ISO to convert the CDR to ISO:

That’s it, now you should have an “Mojave.iso” disk image file on the Mac desktop which is the macOS installer ISO image.

 

 

 

smbios.reflectHost = "TRUE"
hw.model = "MacBookPro16,1"
board-id = "Mac-XXXXXXXXXXXX"
smc.version = "0"

 

board-id 찾는 명령

ioreg -l | grep -i board-id
반응형
Comments