1.

Solve : How can I know my Linux is running 32-bit or 64-bit??

Answer»

As title. Is there any command to know it? Can UNAME satisfy this question?My computer is running 64 bit UBUNTU. Here is the result of executing uname:
[emailprotected]:~$ uname -p
x86_64
[emailprotected]:~$

Notice x86_64. I'm not certain, but I think a 32bit machine will display i386. uname -p SHOWS processor TYPE. Any terminal you can open should be able to execute uname. The command arch will achieve the same.
Executing MAN uname will display all the options, spacebar will move on a page.



Discussion

No Comment Found