Home > Operation and Maintenance > Linux Operation and Maintenance > How to check if the CPU supports 64-bit in Linux

How to check if the CPU supports 64-bit in Linux

PHPz
Release: 2023-05-25 08:28:05
forward
1201 people have browsed it

What is a Linux system

Linux is a UNIX-like operating system that is free to use and spread freely. It is a multi-user, multi-task, multi-thread and multi-CPU operating system based on POSIX. It uses Linux can run major Unix tool software, applications and network protocols.

Check whether there is lm in cpuinfo. If there is lm, it means 64-bit support. lm means long mode. The specific command is as follows:

cat /proc/cpuinfo  | grep flags
Copy after login

Or check whether there is lm character in the output

cat /proc/cpuinfo  | grep flags | grep lm | wc -l
Copy after login

The output result is greater than 0, indicating that 64-bit is supported.

What versions of Linux are there?

Linux versions include: Deepin, UbuntuKylin, Manjaro, LinuxMint, Ubuntu and other versions. Among them, Deepin is one of the best-developed Linux distributions in China; Ubuntu Kylin is a derivative distribution based on Ubuntu; Manjaro is a Linux distribution based on Arch; LinuxMint's default Cinnamon desktop is similar to Windows XP and is simple and easy to use; Ubuntu is a desktop application Mainly Linux operating system.

The above is the detailed content of How to check if the CPU supports 64-bit in Linux. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template