Determine if my PC supports HW Virtualization - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T10:23:46Zhttp://stackoverflow.com/feeds/question/20658http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/20658/determine-if-my-pc-supports-hw-virtualization3Determine if my PC supports HW VirtualizationNick2008-08-21T17:52:09Z2008-12-04T14:44:36Z
<p>How, in general, does one determine if a PC supports hardware virtualization? I use VirtualPC to set up parallel test environments and I'd enjoy a bit of a speed boost.</p>
http://stackoverflow.com/questions/20658/determine-if-my-pc-supports-hw-virtualization/20659#206590Answer by DannySmurf for Determine if my PC supports HW VirtualizationDannySmurf2008-08-21T17:52:56Z2008-08-21T17:52:56Z<p>Try just turning the option on in VirtualPC. If it doesn't do anything (or the option isn't available), then your PC doesn't.</p>
http://stackoverflow.com/questions/20658/determine-if-my-pc-supports-hw-virtualization/20661#206610Answer by Nick for Determine if my PC supports HW VirtualizationNick2008-08-21T17:55:45Z2008-08-21T17:55:45Z<blockquote>
<p>Try just turning the option on in VirtualPC. If it doesn't do anything (or the option isn't available), then your PC doesn't.</p>
</blockquote>
<p>Some PC's require a BIOS setting to be turned on in order for this option to be enabled. I couldn't find that BIOS setting on my machine, but then again there are a lot of options to comb through. Presumably this is a CPU or motherboard chipset feature, so there must be a list of CPU's that support it.</p>
http://stackoverflow.com/questions/20658/determine-if-my-pc-supports-hw-virtualization/20664#206641Answer by EHaskins for Determine if my PC supports HW VirtualizationEHaskins2008-08-21T17:57:03Z2008-08-21T17:57:03Z<p>The first thing is to run VPC, open Options, and see if the HW virtualization option is available.</p>
<p>If it isn't you may still have it. Many machines have HW virtualization disabled in the BIOS. If you believe this is the case you'll need to confirm with your processor mfg that MW virtualization is supported, then find out from your BIOS mfg how to enable that feature.</p>
<p>@Nick what processor do you have?</p>
http://stackoverflow.com/questions/20658/determine-if-my-pc-supports-hw-virtualization/20673#206730Answer by jl23x for Determine if my PC supports HW Virtualizationjl23x2008-08-21T18:01:28Z2008-08-21T18:01:28Z<p>You can take a look in the BIOS of the machine. It indicates if the machine supports hardware virtualization.
You can run programs like virtual pc even if you machine does not support HW virtualization, but if the machine supports it the program take advantage of this extensions.</p>
http://stackoverflow.com/questions/20658/determine-if-my-pc-supports-hw-virtualization/20676#206760Answer by Nick for Determine if my PC supports HW VirtualizationNick2008-08-21T18:03:32Z2008-08-21T18:03:32Z<p>@ EHaskins: CPU-Z reports Intel Pentium D 830 (3 Ghz, Smithfield). The option is disabled in VPC for me.</p>
http://stackoverflow.com/questions/20658/determine-if-my-pc-supports-hw-virtualization/20679#206796Answer by basszero for Determine if my PC supports HW Virtualizationbasszero2008-08-21T18:05:10Z2008-08-21T18:21:48Z<p>Download this: <a href="http://www.cpuid.com/cpuz.php" rel="nofollow">http://www.cpuid.com/cpuz.php</a></p>
<p>Also check, <a href="http://en.wikipedia.org/wiki/X86_virtualization" rel="nofollow">http://en.wikipedia.org/wiki/X86_virtualization</a></p>
<p>Edit: Additional, I know it's for XEN but the instructions are the same for all VMs that want hardware support. <a href="http://wiki.xensource.com/xenwiki/HVM_Compatible_Processors" rel="nofollow">http://wiki.xensource.com/xenwiki/HVM_Compatible_Processors</a></p>
<p>I can't try it from work, but I'm sure it can identify whether you've got the Intel VT or AMD-V instructions. Intel will have a "vmx" instruction and AMD will have a "svm". </p>
<p>On linux you can check /proc/cpuinfo, "egrep '(vmx|svm)' /proc/cpuinfo"</p>
http://stackoverflow.com/questions/20658/determine-if-my-pc-supports-hw-virtualization/20680#206800Answer by Nick for Determine if my PC supports HW VirtualizationNick2008-08-21T18:06:49Z2008-08-21T18:06:49Z<p>@ basszero: Thanks! Unfortunately I don't have the vmx instruction.</p>
http://stackoverflow.com/questions/20658/determine-if-my-pc-supports-hw-virtualization/20683#206830Answer by EHaskins for Determine if my PC supports HW VirtualizationEHaskins2008-08-21T18:07:16Z2008-08-21T18:07:16Z<p>Your processor does NOT support hardware-assisted virtualization, but as others have said you can still run virtualization tools.</p>
<p><a href="http://www.intel.com/products/processor_number/chart/pentium_d.htm" rel="nofollow">http://www.intel.com/products/processor_number/chart/pentium_d.htm</a></p>
http://stackoverflow.com/questions/20658/determine-if-my-pc-supports-hw-virtualization/20700#207000Answer by jmanning2k for Determine if my PC supports HW Virtualizationjmanning2k2008-08-21T18:15:48Z2008-08-21T18:15:48Z<p>Try <a href="http://www.cpuid.com/cpuz.php" rel="nofollow">cpu-z</a> or <a href="http://www.grc.com/securable.htm" rel="nofollow">SecurAble</a> on windows or on linux, <code>cat /proc/cpuinfo</code> and look for the flags: vmx (Intel) or svm (AMD)</p>
<p>All of those will tell you if the hardware supports it, but as others said it must be enabled in the BIOS. (But checking first will avoid an unnecessary reboot...)</p>
http://stackoverflow.com/questions/20658/determine-if-my-pc-supports-hw-virtualization/340804#3408040Answer by sushi for Determine if my PC supports HW Virtualizationsushi2008-12-04T14:44:36Z2008-12-04T14:44:36Z<p><a href="http://en.wikipedia.org/wiki/X86_virtualization" rel="nofollow">http://en.wikipedia.org/wiki/X86_virtualization</a>
first place I'd check </p>