Created
April 19, 2022 13:02
-
-
Save dmaasland/defdf8c171ef5f4ea5c4dfe8e9f8febe to your computer and use it in GitHub Desktop.
Settings to make VM's on VMware Fusion hun halfway decent
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Put these in your VM VMX file | |
mainmem.backing = "swap" # Disable swap | |
MemTrimRate = "0" # Disable returning unused memory | |
sched.mem.pshare.enable = "FALSE" # Disable page sharing | |
prefvmx.useRecommendedLockedMemSize = "TRUE" # Force memory to be pre-allocated on host | |
scsi0.virtualDev = "pvscsi" # Fasted disk i/o subsystem (requires driver off pvscsi.flp floppy disk image) | |
scsi0:0.virtualSSD = 1 # If running off an SSD | |
MemAllowAutoScaleDown = "FALSE" | |
ulm.disableMitigations="TRUE" # Disable side-channel mitigations | |
ethernet0.virtualDev = "vmxnet3" # Use paravirtualized network adapter |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment