Determine if my PC supports HW Virtualization - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T10:23:46Z http://stackoverflow.com/feeds/question/20658 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/20658/determine-if-my-pc-supports-hw-virtualization 3 Determine if my PC supports HW Virtualization Nick 2008-08-21T17:52:09Z 2008-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#20659 0 Answer by DannySmurf for Determine if my PC supports HW Virtualization DannySmurf 2008-08-21T17:52:56Z 2008-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#20661 0 Answer by Nick for Determine if my PC supports HW Virtualization Nick 2008-08-21T17:55:45Z 2008-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#20664 1 Answer by EHaskins for Determine if my PC supports HW Virtualization EHaskins 2008-08-21T17:57:03Z 2008-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#20673 0 Answer by jl23x for Determine if my PC supports HW Virtualization jl23x 2008-08-21T18:01:28Z 2008-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#20676 0 Answer by Nick for Determine if my PC supports HW Virtualization Nick 2008-08-21T18:03:32Z 2008-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#20679 6 Answer by basszero for Determine if my PC supports HW Virtualization basszero 2008-08-21T18:05:10Z 2008-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#20680 0 Answer by Nick for Determine if my PC supports HW Virtualization Nick 2008-08-21T18:06:49Z 2008-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#20683 0 Answer by EHaskins for Determine if my PC supports HW Virtualization EHaskins 2008-08-21T18:07:16Z 2008-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#20700 0 Answer by jmanning2k for Determine if my PC supports HW Virtualization jmanning2k 2008-08-21T18:15:48Z 2008-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#340804 0 Answer by sushi for Determine if my PC supports HW Virtualization sushi 2008-12-04T14:44:36Z 2008-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>