Compare commits

...

4 Commits

Author SHA1 Message Date
Gabriel Luchina ebbf3685a5
Merge pull request #35 from jirijanata/main
Correct adding no subscription repository and Proxmox 8.2 support
2024-04-29 11:11:50 -03:00
Jiří Janata 2f9cc3676f
Update setup to support Proxmox 8.2 2024-04-28 20:45:17 +02:00
Jiří Janata 56850ec1d2
Update README.md with Proxmox 8.2 support 2024-04-28 20:40:37 +02:00
Jiří Janata 771432298d
Correct adding no subscription repository
Correction of if commands.
2024-04-28 11:49:15 +02:00
2 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
# OSX-PROXMOX - Run macOS on ANY Computer - AMD & Intel
Install `** FRESH/CLEAN **` Proxmox VE v7.0.XX ~ 8.1.XX - Next, Next & Finish (NNF).
Install `** FRESH/CLEAN **` Proxmox VE v7.0.XX ~ 8.2.XX - Next, Next & Finish (NNF).
Open Proxmox Web Console -> Datacenter > NAME OF YOUR HOST > Shell.
@ -30,7 +30,7 @@ sudo spctl --master-disable
* macOS Sonoma - 14
## Versions of Proxmox VE Supported
* v7.0.XX ~ 8.1.XX
* v7.0.XX ~ 8.2.XX
## Opencore version
* March/2024 - 0.9.9 with SIP Enabled, DMG only signed by Apple and all features of securities.

10
setup
View File

@ -36,7 +36,7 @@ clear
if [ `pveversion | grep "pve-manager/[7,8]" | wc -l` -ne 1 ]
then
echo "This version of Proxmox Virtual Environment are not supported"
echo "Please, utilize version: 7.XX or 8.1-1"
echo "Please, utilize version: 7.XX or 8.2"
exit
fi
@ -108,7 +108,7 @@ then
if [ ${OSX_PLATFORM} == "AMD" ]
then
if [ `pveversion | grep -i '7.2\|7.3\|7.4\|8.0\|8.1' | wc -l` -eq 1 ]
if [ `pveversion | grep -i '7.2\|7.3\|7.4\|8.0\|8.1\|8.2' | wc -l` -eq 1 ]
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
else
@ -119,7 +119,7 @@ then
if [ ${OSX_PLATFORM} == "INTEL" ]
then
if [ `pveversion | grep -i '7.2\|7.3\|7.4\|8.0\|8.1' | wc -l` -eq 1 ]
if [ `pveversion | grep -i '7.2\|7.3\|7.4\|8.0\|8.1\|8.2' | wc -l` -eq 1 ]
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
else
@ -1549,7 +1549,7 @@ do
echo "Please wait ..."
echo " "
if [`pveversion | grep "pve-manager/[7]" | wc -l` -ne 1]
if [ `pveversion | grep "pve-manager/[7]" | wc -l` -ne 1 ]
then
echo "deb http://download.proxmox.com/debian/pve bullseye pve-no-subscription" > /etc/apt/sources.list.d/pxve-no-sub.list
apt update -y >> ${LOGFILE} 2>> ${LOGFILE}
@ -1558,7 +1558,7 @@ do
exit
fi
if [`pveversion | grep "pve-manager/[8]" | wc -l` -ne 1]
if [ `pveversion | grep "pve-manager/[8]" | wc -l` -ne 1 ]
then
echo "deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription" > /etc/apt/sources.list.d/pxve-no-sub.list
apt update -y >> ${LOGFILE} 2>> ${LOGFILE}