0
If you have an Intel processor, they provide their own site with tons of information of each processor, called the Intel ARK. Just search for your processor there, and it will have a section called Intel 64
, with either a yes or no box.
For AMD processors, here is a list of all their processors, and by pressing View Details
you can see if it is 64-bit capable.
11
run (as root/sudo)
lshw -class CPU
and look at the Width
attribute. If its 64bit
, your hardware is capable.
More info here: http://www.basiclinuxcommand.com/lshw/check-cpu-processor-type-information-linux-fedora-using-lshw-command.html
6This should be accepted answer. – punund – 2014-12-03T20:02:02.180
1
Just to throw a revision of Frank Thomas's answer into the ring. Enter this into your terminal and the answer will be pretty obvious.
lshw -class CPU | grep -i "width"
0
The way I usually do it is by googling the cpu. You can pull the CPU from the BIOS and a look for the specs from Intel, Newegg, etc.
usually the best bet is to look up your CPU model online. you can use lshw to tell you. – Frank Thomas – 2014-06-18T20:18:55.850
Please include the output of
cat /proc/cpuinfo
in your question. – Cristian Ciupitu – 2014-06-18T20:20:20.0503
lscpu
should work as well . . . – ernie – 2014-06-18T20:21:27.770Surely this is a duplicate question and has been asked many times.
grep ' lm ' /proc/cpuinfo
- no output = 32 bit processor. lm = long mode == 64 bit capable and is considered the most relilable flag. – Panther – 2014-06-18T21:11:33.403How can I check if my CPU is AMD64 compatible? from Ask Ubuntu. – Cristian Ciupitu – 2014-06-18T21:40:20.173
Just a note note of caution: even if your CPU is capable of running a 64-bit OS, it is not always advisable to do so. The Ubuntu site recommends 32-bit Ubuntu if you have less than 2GB of RAM. 64-bit code is always bigger, and any gain in CPU speed is swamped by the degradation if there is increased swapping activity. – AFH – 2014-06-18T22:18:38.393