check if VT-x is activated without having to reboot in Linux?

后端 未结 7 563
囚心锁ツ
囚心锁ツ 2020-12-23 16:59

I have a laptop with Intel Core i5 M 450 @ 2.40GHz which apparently has VT-x but not VT-d. I have Ubuntu 12.04 32bit but would like to have a virtual 64bit terminal-based Li

7条回答
  •  别那么骄傲
    2020-12-23 17:30

    You can use rdmsr from msr-tools to read register IA32_FEATURE_CONTROL (address 0x3a). The kernel module msr has to be loaded for this.

    On most Linux systems:

    sudo modprobe msr
    sudo rdmsr 0x3a
    

    Values 3 and 5 mean it's activated.

提交回复
热议问题