1

How can I check if my kubuntu is running in a 64 bits or 32 machine using terminal?

Pedro Luz
  • 113
  • 2
  • 6

4 Answers4

1

Run

uname -a

My machine gives this:

Linux james-desktop 2.6.38-11-generic #48-Ubuntu SMP Fri Jul 29 19:02:55 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux

It should be easy to figure out if your box is 32 bit or 64 bit from the string your box gives you.

Bojangles
  • 555
  • 2
  • 8
  • 18
1

This page says to run

$ grep flags /proc/cpuinfo

and if the lm flag (long mode, I think) is present, you have a 64-bit CPU. The same page also describes JamWaffles's answer of using the kernel's targeted architecture.

1

You can check what is your kubuntu architecture (a 64 bits or 32 machine) using terminal run

getconf WORD_BIT

It will show 32 or 64-bit kUbuntu.

EdmundsZ
  • 129
0
cat /proc/cpuinfo 

look for "lm" under flags LM stands for Long Mode - which is support for a 64 bit programme to access 64 bit instructions

Journeyman Geek
  • 133,878