Shell/Bash: how to check machine is 32bit or 64bit linux Example
Shell/Bash Example: This is the "how to check machine is 32bit or 64bit linux" Example. compiled from many sources on the internet by SimpleTutorials.org
check 64 or 32 bit linux
uname -a
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: [email protected]:~/Desktop$ uname -m x86_64 <<<<<<<<<<<<<
* Summary: This "how to check machine is 32bit or 64bit linux" Shell/Bash Example is compiled from the internet. If you have any questions, please leave a comment. Thank you!