一、在macOS系統中生成ISO文件:
1、在App Store中搜索、下載macOS Sierra系統。
App Store --> macos --> macOS Sierra --> DOWNLOAD
2、通過github下載OSX-KVM文件:
sh-3.2# git clone https://github.com/kholia/OSX-KVM.git
3、進入OSX-KVM目錄,將下載的系統文件生成ISO文件(Install_macOS_10.12.6_Sierra.iso):
sh-3.2# ./create_install_iso.sh
二、在KVM機器中配置、創建虛擬機:
OS:Ubuntu 16.04.3
KVM:QEMU 2.5
1、安裝QEMU及虛擬機管理工具:
root@rock-desktop:/# apt-get install qemu uml-utilities virt-manager
2、下載OSX-KVM配置文件:
root@rock-desktop:/# git clone https://github.com/kholia/OSX-KVM.git
3、創建虛擬硬盤文件:
root@rock-desktop:/# qemu-img create -f qcow2 /usr/local/src/vm/mac_hdd.qcow2 40G
4、修改虛擬機配置文件:
root@rock-desktop:/# vim /usr/local/src/OSX-KVM/macOS-libvirt.xml
<domain type='kvm' xmlns:qemu='http://libvirt.org/schemas/domain/qemu/1.0'> <name>OSX_KVM</name> <title>OSX-KVM</title> <description># echo 1 > /sys/module/kvm/parameters/ignore_msrs</description> <memory unit='KiB'>4194304</memory> <currentMemory unit='KiB'>4194304</currentMemory> <vcpu placement='static'>2</vcpu> <os> <type arch='x86_64' machine='pc-q35-2.4'>hvm</type> <kernel>/usr/local/src/OSX-KVM/enoch_rev2889_boot</kernel> </os> <features> <acpi/> <kvm> <hidden state='on'/> </kvm> </features> <cpu mode='custom' match='exact'> <model fallback='allow'>Penryn</model> </cpu> <devices> <emulator>/usr/bin/qemu-system-x86_64</emulator> <disk type='file' device='disk'> <driver name='qemu' type='qcow2'/> <source file='/usr/local/src/vm/mac_hdd.qcow2'/> <target dev='sda' bus='sata'/> <boot order='1'/> <address type='drive' controller='0' bus='0' target='0' unit='0'/> </disk> <interface type='network'> <source network='default'/> <model type='e1000-82545em'/> <address type='pci' domain='0x0000' bus='0x02' slot='0x02' function='0x0'/> </interface> <input type='mouse' bus='usb'/> <input type='keyboard' bus='usb'/> <graphics type='vnc' port='5900' autoport='no' listen='127.0.0.1' keymap='en-us'> <listen type='address' address='127.0.0.1'/> </graphics> <video> <model type='vmvga' vram='16384' heads='1'/> <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x0'/> </video> <memballoon model='none'/> </devices> <qemu:commandline> <qemu:arg value='-device'/> <qemu:arg value='isa-applesmc,osk=ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc'/> <qemu:arg value='-smbios'/> <qemu:arg value='type=2'/> <qemu:arg value='-k'/> <qemu:arg value='en-us'/> <qemu:arg value='-cpu'/> <qemu:arg value='Penryn,vendor=GenuineIntel'/> <qemu:arg value='-device'/> <qemu:arg value='ide-drive,bus=ide.1,drive=MacDVD'/> <qemu:arg value='-drive'/> <qemu:arg value='id=MacDVD,if=none,snapshot=on,file=/usr/local/src/iso/Install_macOS_Sierra_OS_X_10.12.iso'/> </qemu:commandline> </domain>
5、創建虛擬機:
root@rock-desktop:/# virsh define /usr/local/src/OSX-KVM/macOS-libvirt.xml
注:安裝鏡像ISO文件用原版的會有引導的問題,要找修改過Kernel的。
鏈接:http://pan.baidu.com/s/1qYbe12W 密碼:6znh
此系統升級完之后也會有問題,建議不升級,或者找新的破解kernel。
總之坑很多。
在折騰過程中參考如下文檔,在此表示感謝!
http://blog.csdn.net/z_yttt/article/details/69390250