Add notes for VMware Vagrant on macOS aarch64 platform

This commit is contained in:
lumarel 2023-05-12 18:22:23 +02:00 committed by Lukas Magauer
parent aea75b2bfe
commit 8492597664
1 changed files with 11 additions and 0 deletions

View File

@ -40,6 +40,17 @@ Vagrant.configure("2") do |config|
# other changes if features are needed
# https://kb.vmware.com/s/article/1003746
vmware.vmx["virtualHW.version"] = "10"
# If you are on Apple aarch64 hardware (Mx) make sure you enable these:
#vmware.vmx["virtualHW.version"] = "19" # or higher
#vmware.vmx["guestOS"] = "arm-rhel7-64"
#vmware.vmx["ethernet0.virtualdev"] = "vmxnet3"
#vmware.vmx["ethernet1.virtualdev"] = "vmxnet3" # if you connect more than 1 NIC
# Switching from SCSI to SATA disk
#vmware.vmx["sata0.present"] = "TRUE"
#vmware.vmx["sata0:0.present"] = "TRUE"
#vmware.vmx["scsi0.present"] = "FALSE"
#vmware.vmx["scsi0:0.present"] = "FALSE"
end
end
end