|
Re: Dual core systems Jul 13, 2006 10:01 AM
1.
Re: Dual core systems Jul 13, 2006 10:01 AM
On dual core systems, you can present one or both cores to the VM. This of course can be done through the GUI but you can also set CPU affinity in the .vmx file by adding these two lines...
Use only one processor... processor0.use = "FALSE" processor1.use = "TRUE" Use both processors... processor0.use = "TRUE" processor1.use = "TRUE" |
|
Re: Dual core systems Jul 13, 2006 10:11 AM
2.
Re: Dual core systems Jul 13, 2006 10:11 AM
VMware Server relies on the host O/S to schedule the jobs on the CPU's, so VMware Server will handle however many CPU's your host can handle. If you have 4 cores or more you can set up your guests to use VirtualSMP (multiple virtual CPU's) and have decent performance on those.
|
|
Re: Dual core systems Jul 13, 2006 10:41 AM
3.
Re: Dual core systems Jul 13, 2006 10:41 AM
I just realized I made a mistake. You have 4 cores (two dual core CPU's) so you should be able to assign affinity by the following...
Use only one core... processor0.use = "FALSE" processor1.use = "TRUE" processor2.use = "FALSE" processor3.use = "FALSE" Use two cores... processor0.use = "TRUE" processor1.use = "TRUE" processor2.use = "FALSE" processor3.use = "FALSE" Use all cores... processor0.use = "TRUE" processor1.use = "TRUE" processor2.use = "TRUE" processor3.use = "TRUE" This is of course if you want to get granular on core assignments. COS |
|
Re: Dual core systems Jan 8, 2007 10:59 AM
6.
Re: Dual core systems Jan 8, 2007 10:59 AM
Is this information documented anywhere - other than this post?
|
|
Does anyone know if Intel Core 2 Duo based machines also suffer from having Time Stamp Counters that get out of sync as mentioned in the referenced Kb article? http://kb.vmware.com/kb/2039
The reason I ask is that I had independently arrived at setting cpu affinity to vmware (linux host, windows guests) in vmware workstation (not server) as the only solution that would keep the VMware-vmx from jumping continuously from one cpu to the other, using 89 to 100% of both CPUs and still yielding unuseable performance. This of course limits me to using 50% of the machines capability, which is problematic when I have multiple guests running. |