Linux Tip: How to Tell if Your Processor Supports VT

Virtualization Technology (VT) is a set of enhancements to newer processors that improve performance for running a virtual machine by offloading some of the work to the new cpu extensions. Both AMD and Intel have processors that support this technology, but how do you tell if your system can handle it?

It’s quite simple: We’ll need to take a peek inside the /proc/cpuinfo file and look at the flags section for one of two values, vmx or svm.

  • vmx – (intel)
  • svm – (amd)

You can use grep to quickly see if either value exists in the file by running the following command:

egrep ‘(vmx|svm)’ /proc/cpuinfo

If your system supports VT, then you’ll see vmx or svm in the list of flags. My system has two processors, so there are two separate sections:

flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm constant_tsc pni monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr lahf_lm
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm constant_tsc pni monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr lahf_lm

VT technology can still be disabled in your computer’s BIOS, however, so you’ll want to check there to make sure that it hasn’t been disabled. The flags in cpuinfo simply mean that your processor supports it.

From my research, VT is required in order to run 64-bit guests under the free VMware server for linux… so it would logically follow that if you can do so, VT is enabled.

32-bit VT is not enabled by default under VMware server. If you want to enable it, you need to add the following line to your *.vmx file for your virtual machine:

monitor_control.vt32 = TRUE

VMware does not recommend that you use VT for 32-bit guests, because they say it will actually hurt performance.

More stories

Configure AutoArchive In Outlook 2007

In a previous article we showed you how to quickly clean out your inbox.  Here we will show you how to have more control over what is kept and what is not.  Let’s look at a way to archive the older items so your inbox is not so cluttered up.

See All Processes During Windows Startup Using Autoruns

A very cool utility to analyze and keep track of everything running on your computer during startup is Autoruns.  This handy little utility displays everything running on your computer when you start up.  Sure you can use the built in utility in Windows “msconfig” however your not getting the full

Upgrade Your Live Bookmarks With LiveClick

If you like to subscribe to feeds using Firefox’s Live Bookmarks feature, the LiveClick extension gives you so many upgrades that I can only cover the highlights of how great it is.

Make Monday Not Suck: Flow

I am starting a new Sunday feature where I will post something cool for you to keep on hand so your Monday doesn’t suck.  For lack of a better title the feature is called “Make Monday Not Suck”  I am going to feature something to do on your PC while at work.  So when the boss is breathing down your

Why Doesn’t AutoComplete Always Work in Firefox?

If you’re the type of person that always allows Firefox to save your login credentials for the sites you visit, you might be very frustrated when you come across a site that doesn’t even prompt you to save the credentials. We’ve got the lowdown on what’s going on here.

Windows System Center Essentials 2007

This week I had the opportunity to check out Microsoft’s System Center Essentials (SEC) 2007.  I thought I would share this with all of our IT geek’s out there.

Change Update Interval of Live Bookmarks in Firefox

If you are a fan of the Live Bookmarks feature, you might wonder how to make them update quicker since the default update time is once per hour, and there isn’t a place in the interface to configure this.