Last active
January 14, 2025 08:27
-
-
Save nonkronk/8c5035a05c3faa26cf55d7f15b34b202 to your computer and use it in GitHub Desktop.
Revisions
-
nonkronk revised this gist
Feb 28, 2024 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,6 +10,7 @@ Tools and packages are from [OSX-KVM](https://github.com/kholia/OSX-KVM) reposit # Download fetch-macOS-v2.py and run_offline.sh script mkdir /mnt/user/domains/macos-ventura cd /mnt/user/domains/macos-ventura # Ventura offline install script wget https://raw.githubusercontent.com/kholia/OSX-KVM/master/scripts/run_offline.sh wget https://raw.githubusercontent.com/kholia/OSX-KVM/master/fetch-macOS-v2.py -
nonkronk revised this gist
Feb 28, 2024 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -67,10 +67,10 @@ qemu-img create -f qcow2 mac_hdd_ng.img 128G - Memory: 8GB - Machine: Q35 - BIOS: OVMF - Primary vDisk 1, qcow2, SATA: /mnt/user/domains/macos-ventura/OpenCore.qcow2 - Primary vDisk 2, raw, SATA: /mnt/user/domains/macos-ventura/BaseSystem.img - Primary vDisk 3, qcow2, SATA: /mnt/user/domains/macos-ventura/mac_hdd_ng.img - Primary vDisk 4, raw, SATA: /mnt/user/domains/macos-ventura/InstallAssistant.iso - Create a new VM and edit the XML. Use these [WORKING-VM.xml](https://gist.github.com/nonkronk/76c813325c8bb10e1ca67b0ab8b6c648) and [EFI](https://github.com/nonkronk/unraid-hackintosh/tree/main/EFI) partition as a reference. -
nonkronk revised this gist
Feb 28, 2024 . 1 changed file with 4 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -67,9 +67,10 @@ qemu-img create -f qcow2 mac_hdd_ng.img 128G - Memory: 8GB - Machine: Q35 - BIOS: OVMF - Primary vDisk 1, qcow2: /mnt/user/domains/macos-ventura/OpenCore.qcow2 - Primary vDisk 2, raw: /mnt/user/domains/macos-ventura/BaseSystem.img - Primary vDisk 3, qcow2: /mnt/user/domains/macos-ventura/mac_hdd_ng.img - Primary vDisk 4, raw: /mnt/user/domains/macos-ventura/InstallAssistant.iso - Create a new VM and edit the XML. Use these [WORKING-VM.xml](https://gist.github.com/nonkronk/76c813325c8bb10e1ca67b0ab8b6c648) and [EFI](https://github.com/nonkronk/unraid-hackintosh/tree/main/EFI) partition as a reference. -
nonkronk revised this gist
Feb 28, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -41,7 +41,7 @@ We can compile and install packages from source directly on Unraid, but it's eas # Install packages and mount Unraid NFS/SMB share sudo apt install cifs-utils wget libguestfs-tools make dmg2img genisoimage -y sudo mkdir /mnt/macos-ventura sudo mount -t cifs -o rw,nobrl,username=USERNAME,password=PASSWORD //unraid-host/domains/macos-ventura /mnt/macos-ventura # Download OpenCore cd /mnt/macos-ventura -
nonkronk revised this gist
Feb 28, 2024 . 1 changed file with 2 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -38,13 +38,10 @@ Choose a product to download (1-6): 6 We can compile and install packages from source directly on Unraid, but it's easier to do it on a separate VM and mount a SMB/NFS share (in this case: ```\\unraid-host\\domains```). ```bash # Install packages and mount Unraid NFS/SMB share sudo apt install cifs-utils wget libguestfs-tools make dmg2img genisoimage -y sudo mkdir /mnt/macos-ventura sudo mount -t cifs -o rw,username=USERNAME,password=PASSWORD //unraid-host/domains/macos-ventura /mnt/macos-ventura # Download OpenCore cd /mnt/macos-ventura -
nonkronk revised this gist
Feb 28, 2024 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -41,8 +41,8 @@ We can compile and install packages from source directly on Unraid, but it's eas # Mount Unraid NFS/SMB share sudo apt install cifs-utils sudo mkdir /mnt/macos-ventura sudo mount -t cifs -o rw,username=USERNAME,password=PASSWORD //unraid-host/domains/macos-ventura /mnt/macos-ventura / # Install required packages sudo apt install wget libguestfs-tools make dmg2img genisoimage -y -
nonkronk revised this gist
Feb 28, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -14,7 +14,7 @@ wget https://raw.githubusercontent.com/kholia/OSX-KVM/master/scripts/run_offline wget https://raw.githubusercontent.com/kholia/OSX-KVM/master/fetch-macOS-v2.py # Fetch macOS Installer python3 fetch-macOS-v2.py ``` Sample run: -
nonkronk revised this gist
Feb 26, 2024 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -95,5 +95,6 @@ sh /Volumes/InstallAssistant/run_offline.sh ## Credits - dortania: [OpenCore-Install-Guide](https://github.com/dortania/OpenCore-Install-Guide) - kholia: [OSX-KVM](https://github.com/kholia/OSX-KVM) - SpaceinvaderOne: [Macinabox](https://github.com/SpaceinvaderOne/Macinabox) -
nonkronk revised this gist
Feb 26, 2024 . 1 changed file with 0 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,8 +4,6 @@ Tools and packages are from [OSX-KVM](https://github.com/kholia/OSX-KVM) repository. ## On Unraid Server ```bash -
nonkronk revised this gist
Feb 26, 2024 . 1 changed file with 60 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,15 +1,18 @@ # Offline-Install macOS Ventura/Sonoma as a VM on Unraid Server using AMD Ryzen 9 5950x + RX 6600 XT ## Installation Preparation Tools and packages are from [OSX-KVM](https://github.com/kholia/OSX-KVM) repository. ```bash ## On Unraid Server ```bash # Download fetch-macOS-v2.py and run_offline.sh script mkdir /mnt/user/domains/macos-ventura cd /mnt/user/domains/macos-ventura wget https://raw.githubusercontent.com/kholia/OSX-KVM/master/scripts/run_offline.sh wget https://raw.githubusercontent.com/kholia/OSX-KVM/master/fetch-macOS-v2.py # Fetch macOS Installer @@ -34,13 +37,65 @@ Choose a product to download (1-6): 6 ## On other Linux (Ubuntu) VM We can compile and install packages from source directly on Unraid, but it's easier to do it on a separate VM and mount a SMB/NFS share (in this case: ```\\unraid-host\\domains```). ```bash # Mount Unraid NFS/SMB share sudo apt install cifs-utils sudo mkdir /mnt/macos-ventura sudo mount -t cifs -o rw,username=USERNAME,password=PASSWORD /unraid-host/domains/macos-ventura /mnt/macos-ventura # Install required packages sudo apt install wget libguestfs-tools make dmg2img genisoimage -y # Download OpenCore cd /mnt/macos-ventura wget https://github.com/kholia/OSX-KVM/blob/master/OpenCore/OpenCore.qcow2 # Download & create Offline Ventura Installer (Version: 13.6.4) # Reference: https://mrmacintosh.com/macos-ventura-13-full-installer-database-download-directly-from-apple/ wget https://swcdn.apple.com/content/downloads/32/13/052-33049-A_UX3Z28TPLL/702vi772ckrytq1r67eli9zrgsu8jxxoqw/InstallAssistant.pkg genisoimage -allow-limited-size -l -J -r -iso-level 3 -V InstallAssistant -o InstallAssistant.iso InstallAssistant.pkg run_offline.sh # Convert the downloaded BaseSystem.dmg file into the BaseSystem.img file. dmg2img -i BaseSystem.dmg BaseSystem.img # Create a virtual HDD image where macOS will be installed. qemu-img create -f qcow2 mac_hdd_ng.img 128G ``` ## VM Installation - Add a new VM in Unraid using the following settings: - OS: Any - CPUS: 4 cores - Memory: 8GB - Machine: Q35 - BIOS: OVMF - Primary vDisk 1: /mnt/user/domains/macos-ventura/OpenCore.qcow2 - Primary vDisk 2: /mnt/user/domains/macos-ventura/BaseSystem.img - Primary vDisk 3: /mnt/user/domains/macos-ventura/mac_hdd_ng.img - Create a new VM and edit the XML. Use these [WORKING-VM.xml](https://gist.github.com/nonkronk/76c813325c8bb10e1ca67b0ab8b6c648) and [EFI](https://github.com/nonkronk/unraid-hackintosh/tree/main/EFI) partition as a reference. - Start the VM and open the VNC console. The VM should boot into the macOS installer. - Format the virtual HDD that we created before using Disk Utility with name ```macOS``` (required). - Click ```Utilities``` > ```Terminal``` and run following command: ```sh sh /Volumes/InstallAssistant/run_offline.sh ``` - Wait and install macOS. ## Troubleshooting - [Access config.plist OpenCore from a macos_disk.img on Unraid](https://gist.github.com/nonkronk/8cb3c00729631e2aa113c51934bad6d5#access-configplist-opencore-from-a-macos_diskimg-on-unraid) - [Fix Broken Ethernet for Hackintosh running under Unraid VM](https://gist.github.com/nonkronk/f76bd324c5f046b4e53065399548bbe5) - [Fix macOS Ventura RX 6600 XT GPU Passthrough on Unraid](https://gist.github.com/nonkronk/a687dd4fbe897988d7e5f2bd27801226) - [Fix macOS Ventura USB & Bluetooth CSR5810 Hackintosh Unraid](https://gist.github.com/nonkronk/86421b0a997393c6aba996c6332ce32c) ## Credits - kholia: [OSX-KVM](https://github.com/kholia/OSX-KVM) - SpaceinvaderOne: [Macinabox](https://github.com/SpaceinvaderOne/Macinabox) -
nonkronk revised this gist
Feb 26, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Download tools and packages ## On Unraid Server ```bash # Install required packages mkdir /mnt/user/domains/macos-ventura cd /mnt/user/domains/macos-ventura wget https://raw.githubusercontent.com/kholia/OSX-KVM/master/fetch-macOS-v2.py -
nonkronk revised this gist
Feb 26, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Download tools and packages ## On Unraid Server ```bash mkdir /mnt/user/domains/macos-ventura cd /mnt/user/domains/macos-ventura wget https://raw.githubusercontent.com/kholia/OSX-KVM/master/fetch-macOS-v2.py -
nonkronk revised this gist
Feb 26, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Download tools and packages ## On Unraid Server ```bash # Download mkdir /mnt/user/domains/macos-ventura cd /mnt/user/domains/macos-ventura wget https://raw.githubusercontent.com/kholia/OSX-KVM/master/fetch-macOS-v2.py -
nonkronk revised this gist
Feb 26, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Download tools and packages ## On Unraid Server ```bash # mkdir /mnt/user/domains/macos-ventura cd /mnt/user/domains/macos-ventura wget https://raw.githubusercontent.com/kholia/OSX-KVM/master/fetch-macOS-v2.py -
nonkronk revised this gist
Feb 26, 2024 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -11,6 +11,7 @@ Download tools and packages mkdir /mnt/user/domains/macos-ventura cd /mnt/user/domains/macos-ventura wget https://raw.githubusercontent.com/kholia/OSX-KVM/master/fetch-macOS-v2.py # Fetch macOS Installer python fetch-macOS-v2.py ``` -
nonkronk revised this gist
Feb 26, 2024 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -11,7 +11,8 @@ Download tools and packages mkdir /mnt/user/domains/macos-ventura cd /mnt/user/domains/macos-ventura wget https://raw.githubusercontent.com/kholia/OSX-KVM/master/fetch-macOS-v2.py # Fetch macOS Installer python fetch-macOS-v2.py ``` Sample run: -
nonkronk revised this gist
Feb 26, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -35,7 +35,7 @@ Choose a product to download (1-6): 6 We can compile and install from source directly on Unraid, but it's easier to do it on a separate VM and mount a SMB/NFS share. ```bash # Install required packages sudo apt install wget libguestfs-tools make dmg2img genisoimage -y ``` -
nonkronk revised this gist
Feb 26, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -35,7 +35,7 @@ Choose a product to download (1-6): 6 We can compile and install from source directly on Unraid, but it's easier to do it on a separate VM and mount a SMB/NFS share. ```bash # sudo apt install wget libguestfs-tools make dmg2img genisoimage -y ``` -
nonkronk revised this gist
Feb 26, 2024 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -35,6 +35,7 @@ Choose a product to download (1-6): 6 We can compile and install from source directly on Unraid, but it's easier to do it on a separate VM and mount a SMB/NFS share. ```bash sudo apt install wget libguestfs-tools make dmg2img genisoimage -y ``` -
nonkronk revised this gist
Feb 26, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -32,7 +32,7 @@ Choose a product to download (1-6): 6 ## On other Linux (Ubuntu) VM We can compile and install from source directly on Unraid, but it's easier to do it on a separate VM and mount a SMB/NFS share. ```bash sudo apt install wget libguestfs-tools make dmg2img genisoimage -y -
nonkronk revised this gist
Feb 26, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -32,7 +32,7 @@ Choose a product to download (1-6): 6 ## On other Linux (Ubuntu) VM We can compile and install from source directly on Unraid, but it's easier to do it on a separate VM and mount a SMB/NFS sha. ```bash sudo apt install wget libguestfs-tools make dmg2img genisoimage -y -
nonkronk revised this gist
Feb 26, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -32,7 +32,7 @@ Choose a product to download (1-6): 6 ## On other Linux (Ubuntu) VM We can compile and install from source directly on Unraid, but it's easier to do it on a separate VM and mount a SMB. ```bash sudo apt install wget libguestfs-tools make dmg2img genisoimage -y -
nonkronk revised this gist
Feb 26, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -32,7 +32,7 @@ Choose a product to download (1-6): 6 ## On other Linux (Ubuntu) VM We can compile and install from source directly on Unraid, but it's easier to do it on a separate VM and mount a . ```bash sudo apt install wget libguestfs-tools make dmg2img genisoimage -y -
nonkronk revised this gist
Feb 26, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -32,7 +32,7 @@ Choose a product to download (1-6): 6 ## On other Linux (Ubuntu) VM We can compile and install from source directly on Unraid, but it's easier to do it on a separate VM and mount . ```bash sudo apt install wget libguestfs-tools make dmg2img genisoimage -y -
nonkronk revised this gist
Feb 26, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -32,7 +32,7 @@ Choose a product to download (1-6): 6 ## On other Linux (Ubuntu) VM We can compile and install from source directly on Unraid, but it's easier to do it on a separate VM and . ```bash sudo apt install wget libguestfs-tools make dmg2img genisoimage -y -
nonkronk revised this gist
Feb 26, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -28,7 +28,7 @@ $ ./fetch-macOS-v2.py 7. Sonoma (14) Choose a product to download (1-6): 6 ``` ## On other Linux (Ubuntu) VM -
nonkronk revised this gist
Feb 26, 2024 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -15,6 +15,7 @@ python fetch-macOS-v2.py # Fetch macOS Installer ``` Sample run: ```bash $ ./fetch-macOS-v2.py -
nonkronk revised this gist
Feb 26, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -15,7 +15,7 @@ python fetch-macOS-v2.py # Fetch macOS Installer ``` Sample run: ```bash $ ./fetch-macOS-v2.py 1. High Sierra (10.13) -
nonkronk revised this gist
Feb 26, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -15,7 +15,7 @@ python fetch-macOS-v2.py # Fetch macOS Installer ``` Sample run: ``` $ ./fetch-macOS-v2.py 1. High Sierra (10.13) -
nonkronk revised this gist
Feb 26, 2024 . 1 changed file with 13 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -14,6 +14,19 @@ wget https://raw.githubusercontent.com/kholia/OSX-KVM/master/fetch-macOS-v2.py python fetch-macOS-v2.py # Fetch macOS Installer ``` Sample run: $ ./fetch-macOS-v2.py 1. High Sierra (10.13) 2. Mojave (10.14) 3. Catalina (10.15) 4. Big Sur (11.7) 5. Monterey (12.6) 6. Ventura (13) - RECOMMENDED 7. Sonoma (14) Choose a product to download (1-6): 6 ## On other Linux (Ubuntu) VM
NewerOlder