2 Commits
3.0.0 ... 3.2.0

Author SHA1 Message Date
Gabriel
35f073149c Version 3.2.0 - Open source code, new scripts, etc 2022-01-31 10:28:09 -03:00
Gabriel
7ae07eb6e2 New version of OSX-PROXMOX (v3.1.0) - Please read CHANGELOG for details 2022-01-21 07:17:41 -03:00
5 changed files with 38 additions and 3 deletions

View File

@@ -1,6 +1,20 @@
OpenCore Changelog
==================
#### v3.2.0
- Open SOURCE CODE of BINARY \o/
- Alter function '201 - Update Opencore ISO file' to download .ISO directly from repository;
- Add script in tools - CHECK-IOMMU.sh - Check if your IOMMU are ENABLED;
- Update macrecovery tool for Opencore 0.7.7;
- Update README;
- Adjustments to copyright terms.
#### v3.1.0
- Add support to run macOS in Cloud using this solution with VultR Provider;
- Add option to 'Remove Proxmox Subscription Notice';
#### v3.0.0
- Upgrade Opencore to 0.7.7;

View File

@@ -4,7 +4,7 @@ Install `** FRESH/CLEAN **` Proxmox VE v7.XX - Next, Next & Finish (NNF).
Open Proxmox Web Console -> Datacenter > NAME OF YOUR HOST > Shell.
Copy, paste and execute.
Copy, paste and execute (code below).
Voilà, install macOS! This is really and magic **easiest way**!
@@ -27,10 +27,15 @@ Voilà, install macOS! This is really and magic **easiest way**!
## Opencore version
* January/2022 - 0.7.7 with SIP Enabled, DMG only signed by Apple and all features of securities.
## Cloud Support (Yes, install your Hackintosh in Cloud Environment)
- [VultR](https://www.vultr.com/?ref=9035565-8H)
- [Vídeo/Tutorial](https://youtu.be/8QsMyL-PNrM), please activate captions!
## Disclaimer
- FOR DEV/STUDENT/TEST ONLY PURPOSES.
- I'm not responsible for any problem and/or equipment damage or loss of files. Always back up everything before any changes to your computer.
- I'm not responsible for any problem and/or equipment damage or loss of files.
- Always back up everything before any changes to your computer.
## Demonstration (in Portuguese/Brazil)
@@ -46,4 +51,4 @@ https://youtu.be/G51z390XYMA
- Proxmox - Excelent and better documentation for Virtualization
## Discord - Universo Hackintosh
- [Access Discord](https://discord.universohackintosh.com.br)
- [Discord](https://discord.universohackintosh.com.br)

BIN
setup

Binary file not shown.

16
tools/CHECK-IOMMU.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
#
# Script: check-iommu-enabled.sh
# Goal: Check if IOMMU are Enabled in your system
#
# Author: Gabriel Luchina
# https://luchina.com.br
# 20220128T1112
if [ `dmesg | grep -e DMAR -e IOMMU | wc -l` -gt 0 ]
then
echo "IOMMU Enabled"
else
echo "IOMMU NOT Enabled"
echo "Check file /etc/default/grub contains 'intel_iommu=on' in 'GRUB_CMDLINE_LINUX_DEFAULT' line"
fi

0
tools/macrecovery/macrecovery.py Normal file → Executable file
View File