Solved - VMWare suspend slows down computer
For several months now, I've had a problem where suspending a development VM in VMWare Workstation 8 slows the computer down dramatically for 10-15 minutes.
I found that specially surprising because I have 12GB of RAM in this particular computer, and it is a 3.5GB VM, so there were no memory problems.
As you can imagine, that was quite disruptive, but till today I didn't find a solution that worked.
Luckily my search today led me to the following, simple solution. Just add the following lines to your VMX file:
mainMem.useNamedFile = "FALSE"
prefvmx.useRecommendedLockedMemSize = "TRUE"
prefvmx.minVmMemPct = "100"
This seemed to fix my problem.
I found that specially surprising because I have 12GB of RAM in this particular computer, and it is a 3.5GB VM, so there were no memory problems.
As you can imagine, that was quite disruptive, but till today I didn't find a solution that worked.
Luckily my search today led me to the following, simple solution. Just add the following lines to your VMX file:
mainMem.useNamedFile = "FALSE"
prefvmx.useRecommendedLockedMemSize = "TRUE"
prefvmx.minVmMemPct = "100"
This seemed to fix my problem.
Comments