If you are running your Linux under “Intel” based processor then open your terminal and paste the following command and then press enter.
if [ 'grep -c vmx /proc/cpuinfo' -ge 1 ]; then echo Supports Intel VT; else echo No Support for Intel VT; fiIf you are running your Linux under “AMD” based processor then open your terminal and paste the following command and then press enter.
if [ 'egrep -c '(vmx|svm)' /proc/cpuinfo' -ge 1 ]; then echo Supports VT; else echo No Support for VT; fi
0 comments:
Post a Comment