Home > Article > Operation and Maintenance > Two ways to check the number of bits in a Linux system
Method 1:
Right-click on the desktop and click [Open Terminal]
After opening the terminal, Enter the command [getconf LONG_BIT] and press Enter, the system number of bits will be returned; as shown in the figure:
Recommended online video tutorial: linux video tutorial
Method 2:
Still in the terminal, enter the command [uname -a] and press Enter
According to the returned information, If there is the word [x86_64], it means it is 64-bit, if it does not, it means 32-bit.
Recommended related articles and tutorials: linux tutorial
The above is the detailed content of Two ways to check the number of bits in a Linux system. For more information, please follow other related articles on the PHP Chinese website!