Answers for "how to know if your computer is 32 or 64 bit linux"

5

how to check machine is 32bit or 64bit linux

uname -m 

NOTE: It shows if your system is running 32-bit (i686 or i386) or 64-bit(x86_64).
Example 1:
prashad@ubuntu:~/Desktop$ uname -m
x86_64     <<<<<<<<<<<<<<this is 64-bit

Example 2:(you can check with 'lscpu' command also)
durga@ubuntu:~/Desktop$$ lscpu
Architecture:          i686	  <<<<<<<<<this is 32-bit
CPU op-mode(s):        32-bit
Posted by: Guest on September-03-2020
0

how to check system is 32 or 64 linux

To know whether your system is 32-bit or 64-bit,
type the command "uname -m" and press "Enter". 
This displays only the machine hardware name.
It shows if your system is running 32-bit (i686 or i386)
or 64-bit(x86_64).
Posted by: Guest on June-02-2021

Code answers related to "how to know if your computer is 32 or 64 bit linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language