Quote:
e have a HOST ubuntu machine running VMPlayer and vmware-vmx was eating CPU to 100% or almost 400% ( with 4 CPU configured )
After several "google searches" i seem to have found the issue is this thread:
https://communities.vmware.com/threa...rt=30&tstart=0
Just run this on terminal and the rebot host UBUNTU
vblank_mode=0 /usr/lib/vmware/bin/vmplayer
This not WORK!!!!
SOLVED:
edit the file rc.local and add the lines below....
sudo vi /etc/rc.local
if test -f /sys/kernel/mm/transparent_hugepage/enabled; then
echo never > /sys/kernel/mm/transparent_hugepage/enabled
fi
if test -f /sys/kernel/mm/transparent_hugepage/defrag; then
echo never > /sys/kernel/mm/transparent_hugepage/defrag
fi
exit 0
|
So, for anyone else having this issue. After much troubleshooting, I ran these commands to fix my extremely slowness issue with FC23 with VMware Player 12
Step 1 - echo never > /sys/kernel/mm/transparent_hugepage/enabled
Step 2 - echo never > /sys/kernel/mm/transparent_hugepage/defrag
Then, I rebooted all of my VM's OS environments.
For permanent, I think you have to put those lines in your rc.local file. But I don't have that file. So, I just ran the commands.
Now, All of my VM's OS are running on normal speed. Except the Fedora 23 VM OS. For some reason, it keeps complaining that VMware Tools is NOT installed. Even though I have installed it already. Fedora 23 VM is little bit slow but faster than before. So, I may have to live with it.
I do know that there is major issue with VMware Player 12 with Fedora 23. So, beware!!!
https://communities.vmware.com/threa...art=0&tstart=0