| Find out if processor is 32bit or 64 (Linux) |
|
|
| Linux |
|
Q. How can I find out if my processor is 64 bit or 32, under linux. A. Open shell and type:
cat /proc/cpuinfo You will get an output, most likely of more than one CPU. Let's just pick one and look at it:
processor : 0 Look for lm (Long Mode) under flags - if you can see it, you have a 64 bit CPU, if not, it is a 32 bit one. If you want to know which version of OS you are running (32bit or 64bit), type in:
uname -a 32 bit: Linux ubuntu 2.6.24-19-server #1 SMP Wed Aug 20 23:54:28 UTC 2008 i686 GNU/Linux 64 bit: Linux ubuntu 2.6.32-28-server #55-Ubuntu SMP Mon Jan 10 23:57:16 UTC 2011 x86_64 GNU/Linux It will say "i686" for 32bit and "x86_64" for 64bit. Do I have VT support?Find out if your system supports Hyper-V by running the following commands. On Intel based processors:
grep vmx /proc/cpuinfo For AMD based processors, run the following command:
grep svm /proc/cpuinfo |
| Last Updated on Tuesday, 22 November 2011 07:29 |

