Migrate to Opencore 0.8.7 and update to support PVE v7.3
This commit is contained in:
parent
9aa6ea1c60
commit
3293601ff8
Binary file not shown.
|
@ -1,6 +1,6 @@
|
||||||
# OSX-PROXMOX - Run macOS on ANY Computer - AMD & Intel
|
# OSX-PROXMOX - Run macOS on ANY Computer - AMD & Intel
|
||||||
|
|
||||||
Install `** FRESH/CLEAN **` Proxmox VE v7.0.XX ~ 7.2.XX - Next, Next & Finish (NNF).
|
Install `** FRESH/CLEAN **` Proxmox VE v7.0.XX ~ 7.3.XX - Next, Next & Finish (NNF).
|
||||||
|
|
||||||
Open Proxmox Web Console -> Datacenter > NAME OF YOUR HOST > Shell.
|
Open Proxmox Web Console -> Datacenter > NAME OF YOUR HOST > Shell.
|
||||||
|
|
||||||
|
@ -29,10 +29,11 @@ sudo spctl --master-disable
|
||||||
* macOS Ventura - 13
|
* macOS Ventura - 13
|
||||||
|
|
||||||
## Versions of Proxmox VE Supported
|
## Versions of Proxmox VE Supported
|
||||||
* v7.0.XX ~ 7.1.XX
|
* v7.0.XX ~ 7.3.XX
|
||||||
|
* v7.3 not fully tested yet
|
||||||
|
|
||||||
## Opencore version
|
## Opencore version
|
||||||
* November/2022 - 0.8.6 with SIP Enabled, DMG only signed by Apple and all features of securities.
|
* December/2022 - 0.8.7 with SIP Enabled, DMG only signed by Apple and all features of securities.
|
||||||
|
|
||||||
## Cloud Support (Yes, install your Hackintosh in Cloud Environment)
|
## Cloud Support (Yes, install your Hackintosh in Cloud Environment)
|
||||||
- [VultR](https://www.vultr.com/?ref=9035565-8H)
|
- [VultR](https://www.vultr.com/?ref=9035565-8H)
|
||||||
|
@ -46,7 +47,7 @@ sudo spctl --master-disable
|
||||||
|
|
||||||
## Demonstration (in Portuguese/Brazil)
|
## Demonstration (in Portuguese/Brazil)
|
||||||
|
|
||||||
https://youtu.be/G51z390XYMA
|
https://youtu.be/dil6iRWiun0
|
||||||
|
|
||||||
\* Please use CC with Auto Translate to English for your convenience.
|
\* Please use CC with Auto Translate to English for your convenience.
|
||||||
|
|
||||||
|
|
8
setup
8
setup
|
@ -48,8 +48,8 @@ SCRIPT_DIR=/root/OSX-PROXMOX
|
||||||
LOGDIR=${SCRIPT_DIR}/logs
|
LOGDIR=${SCRIPT_DIR}/logs
|
||||||
TMPDIR=${SCRIPT_DIR}/tmp
|
TMPDIR=${SCRIPT_DIR}/tmp
|
||||||
ISODIR=/var/lib/vz/template/iso/
|
ISODIR=/var/lib/vz/template/iso/
|
||||||
HACKPXVERSION="202211091136"
|
HACKPXVERSION="202212061400"
|
||||||
OCVERSION="0.8.6"
|
OCVERSION="0.8.7"
|
||||||
DEFAULT_VM_PREFIX="HACK-"
|
DEFAULT_VM_PREFIX="HACK-"
|
||||||
DEFAULT_RAM_SIZE=4096
|
DEFAULT_RAM_SIZE=4096
|
||||||
|
|
||||||
|
@ -108,7 +108,7 @@ then
|
||||||
|
|
||||||
if [ ${OSX_PLATFORM} == "AMD" ]
|
if [ ${OSX_PLATFORM} == "AMD" ]
|
||||||
then
|
then
|
||||||
if [ `pveversion | grep -i 7.2 | wc -l` -eq 1 ]
|
if [ `pveversion | grep -i '7.2\|7.3' | wc -l` -eq 1 ]
|
||||||
then
|
then
|
||||||
sed -i 's/GRUB_CMDLINE_LINUX_DEFAULT="quiet"/GRUB_CMDLINE_LINUX_DEFAULT="quiet amd_iommu=on iommu=pt video=vesafb:off video=efifb:off initcall_blacklist=sysfb_init"/g' /etc/default/grub
|
sed -i 's/GRUB_CMDLINE_LINUX_DEFAULT="quiet"/GRUB_CMDLINE_LINUX_DEFAULT="quiet amd_iommu=on iommu=pt video=vesafb:off video=efifb:off initcall_blacklist=sysfb_init"/g' /etc/default/grub
|
||||||
else
|
else
|
||||||
|
@ -118,7 +118,7 @@ then
|
||||||
|
|
||||||
if [ ${OSX_PLATFORM} == "INTEL" ]
|
if [ ${OSX_PLATFORM} == "INTEL" ]
|
||||||
then
|
then
|
||||||
if [ `pveversion | grep -i 7.2 | wc -l` -eq 1 ]
|
if [ `pveversion | grep -i '7.2\|7.3' | wc -l` -eq 1 ]
|
||||||
then
|
then
|
||||||
sed -i 's/GRUB_CMDLINE_LINUX_DEFAULT="quiet"/GRUB_CMDLINE_LINUX_DEFAULT="quiet intel_iommu=on iommu=pt video=vesafb:off video=efifb:off initcall_blacklist=sysfb_init"/g' /etc/default/grub
|
sed -i 's/GRUB_CMDLINE_LINUX_DEFAULT="quiet"/GRUB_CMDLINE_LINUX_DEFAULT="quiet intel_iommu=on iommu=pt video=vesafb:off video=efifb:off initcall_blacklist=sysfb_init"/g' /etc/default/grub
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue