search
HomeSystem TutorialLINUXHow to Find Three Key Aspects of a CPU - Getting CPU Details in Linux

As a Linux user, I can understand your obsession with CPU.

Sometimes you want to know every detail of your notebook. How many cores are there? Is it a virtual processor or a chemical processor? Who is the manufacturer? And more.

So, how to get CPU details in Linux?

In this tutorial, I will guide you through three key aspects of how to find a CPU:

1. Obtain detailed CPU information

2. What is the current CPU usage of each core

3. Understand the CPU temperature

Let’s start with the first one.

#Find CPU detailed information in Linux

获取版本信息失败是什么意思_linux 获取版本信息_获取版本信息失败怎么办

The easiest way to get detailed CPU information in Linux is to use the lscpu command. The best part is that it doesn't require any installation.

To know every detail of the CPU, just execute the lscpu command as shown below:

<span></span><code style="padding: 16px;color: #abb2bf;padding-top: 15px;background: #282c34;border-radius: 5px;, Consolas, Monaco, Menlo, monospace;border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;font-size: 12px">lscpu<br></code>

获取版本信息失败怎么办_linux 获取版本信息_获取版本信息失败是什么意思

Let’s break down the output one by one.

NUMAnode(s): A NUMA node is a group of CPU cores and memory strips that are chemically close together and share a local memory controller.

NUMAnode0CPU(s): It means that I have a NUMA node named node0, but all the cores are located in the same NUMA code.

<span></span><code style="padding: 16px;color: #abb2bf;padding-top: 15px;background: #282c34;border-radius: 5px;, Consolas, Monaco, Menlo, monospace;border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;font-size: 12px">NUMA node0 CPU(s):     0-7,16-23<br>NUMA node1 CPU(s):     8-15,24-31<br></code>

获取版本信息失败怎么办_linux 获取版本信息_获取版本信息失败是什么意思

What else do you need?

#Find the current CPU usage of each core

You can use the top command to detect the CPU utilization rate. However, the htop command is a better tool than top. It displays the CPU usage of each core in a better and friendly interface.

And it is not pre-installed in most Linux distributions.

Delete the directory for this LINUX, here I will show you how to install and use htop to monitor the current CPU usage.

For Ubuntu users:

<span></span><code style="padding: 16px;color: #abb2bf;padding-top: 15px;background: #282c34;border-radius: 5px;, Consolas, Monaco, Menlo, monospace;border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;font-size: 12px">sudo apt install htop<br></code>

For Fedora users:

linux 获取版本信息_获取版本信息失败是什么意思_获取版本信息失败怎么办

<span></span><code style="padding: 16px;color: #abb2bf;padding-top: 15px;background: #282c34;border-radius: 5px;, Consolas, Monaco, Menlo, monospace;border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;font-size: 12px">sudo dnf install htop<br></code>

对于ArchLinux:

<span></span><code style="padding: 16px;color: #abb2bf;padding-top: 15px;background: #282c34;border-radius: 5px;, Consolas, Monaco, Menlo, monospace;border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;font-size: 12px">sudo pacman -S htop<br></code>

安装完成后linux 获取版本信息,您可以使用以下命令启动htop:

<span></span><code style="padding: 16px;color: #abb2bf;padding-top: 15px;background: #282c34;border-radius: 5px;, Consolas, Monaco, Menlo, monospace;border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;font-size: 12px">htop<br></code>

获取版本信息失败是什么意思_linux 获取版本信息_获取版本信息失败怎么办

如您所见,它显示了怎样借助每位核心,以及系统中运行的显存消耗和任务总量。

#在Linux中查找CPU气温

获取版本信息失败怎么办_linux 获取版本信息_获取版本信息失败是什么意思

要找到CPU体温linux 获取版本信息,你所须要的只是一个名为lm-sensors的实用程序,下边是怎样在各类Linux发行版上安装的方式:

对于Ubuntu/Debian用户:

<span></span><code style="padding: 16px;color: #abb2bf;padding-top: 15px;background: #282c34;border-radius: 5px;, Consolas, Monaco, Menlo, monospace;border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;font-size: 12px">sudo apt install lm-sensors<br></code>

对于Fedora:

<span></span><code style="padding: 16px;color: #abb2bf;padding-top: 15px;background: #282c34;border-radius: 5px;, Consolas, Monaco, Menlo, monospace;border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;font-size: 12px">sudo dnf install lm_sensors<br></code>

ForArch:

<span></span><code style="padding: 16px;color: #abb2bf;padding-top: 15px;background: #282c34;border-radius: 5px;, Consolas, Monaco, Menlo, monospace;border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;font-size: 12px">sudo pacman -S lm_sensors<br></code>

安装完成后,执行以下命令,它将显示CPU的气温:

获取版本信息失败是什么意思_获取版本信息失败怎么办_linux 获取版本信息

<span></span><code style="padding: 16px;color: #abb2bf;padding-top: 15px;background: #282c34;border-radius: 5px;, Consolas, Monaco, Menlo, monospace;border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;font-size: 12px">sensors<br></code>

#结束

在本教程中,我介绍了怎样使用lscpu命令获取CPU详尽信息,还提及了怎样检测CPU使用情况和湿度。

在Linux中有更多的工具可以获取系统硬件细节。我用的是最常见的。

我希望你会发觉这个快速提示有帮助。假如有任何问题请告诉我。

注:本文翻译自:

<span></span><code style="padding: 16px;color: #abb2bf;padding-top: 15px;background: #282c34;border-radius: 5px;, Consolas, Monaco, Menlo, monospace;border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-right-radius: 0px;border-bottom-left-radius: 0px;font-size: 12px">https://itsfoss.com/cpu-info-linux/<br></code>

【By】:SagarSharma

The above is the detailed content of How to Find Three Key Aspects of a CPU - Getting CPU Details in Linux. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
Top 3 Open Source Virtual Data Room (VDR) for LinuxTop 3 Open Source Virtual Data Room (VDR) for LinuxMay 08, 2025 am 11:35 AM

Virtual Data Rooms (VDRs) offer secure document storage and sharing, ideal for sensitive business information. This article explores three open-source VDR solutions for on-premises deployment on Linux, eliminating the need for cloud-based services a

Upscayl: An Open-Source Image Upscaling Tool for LinuxUpscayl: An Open-Source Image Upscaling Tool for LinuxMay 08, 2025 am 11:19 AM

Upscayl: Your Free and Open-Source Solution for High-Resolution Images on Linux Linux users who frequently work with images know the frustration of low-resolution pictures. Luckily, Upscayl offers a powerful, free, and open-source solution. This des

Ghostty - A Feature-Rich Terminal Emulator for LinuxGhostty - A Feature-Rich Terminal Emulator for LinuxMay 08, 2025 am 11:14 AM

The terminal emulator landscape is evolving rapidly, with developers leveraging modern hardware, GPU acceleration, containerization, and even AI/LLMs to enhance console experiences. Enter Ghostty, a new open-source, cross-platform terminal emulator

Innotop - A CLI Based top-like Monitor Tool for MySQLInnotop - A CLI Based top-like Monitor Tool for MySQLMay 08, 2025 am 10:48 AM

Innotop: Powerful MySQL monitoring command line tool Innotop is an excellent command line program, similar to the top command, used to monitor local and remote MySQL servers running under the InnoDB engine. It provides a comprehensive set of features and options to help database administrators (DBAs) track various aspects of MySQL performance, troubleshoot issues and optimize server configuration. Innotop allows you to monitor critical MySQL metrics, such as: MySQL replication status User statistics Query list InnoDB buffer pool InnoDB I/O Statistics Open table Locked table etc… The tool regularly refreshes its data to provide server status

How to Back Up Linux Data with Restic ToolHow to Back Up Linux Data with Restic ToolMay 08, 2025 am 10:34 AM

Restic: Your Comprehensive Guide to Secure Linux Backups Data loss can cripple a Linux system. Accidental deletions, hardware failures, or system corruption necessitate a robust backup strategy. Restic is a leading solution, providing speed, securi

10 Top Most Popular Linux Distributions in 202410 Top Most Popular Linux Distributions in 2024May 08, 2025 am 10:15 AM

Top 10 Most Popular Linux Distributions in 2025 Entering 2025, we are excited to share with Linux enthusiasts the most popular distribution this year so far. DistroWatch has always been the most reliable source of information about open source operating systems, with particular attention to Linux distributions and BSD versions. It continuously collects and presents a lot of information about Linux distributions, making them easier to access. While it doesn't measure the popularity or usage of a distribution very well, DistroWatch remains the most accepted measure of popularity within the Linux community. It uses page click ranking (PHR) statistics to measure the popularity of Linux distributions among website visitors. [You can

Top 15 Tiling Window Managers for Linux in 2025Top 15 Tiling Window Managers for Linux in 2025May 08, 2025 am 10:08 AM

Linux Window Managers: A Comprehensive Guide to the Best Tiling Options Linux window managers orchestrate how application windows behave, quietly managing the visual arrangement of your open programs. This article explores top-tier tiling window man

How to Replace Numbers Dynamically Using sed in LinuxHow to Replace Numbers Dynamically Using sed in LinuxMay 08, 2025 am 09:33 AM

The sed command (stream editor) in Linux system is a powerful text processing tool that is widely used for text manipulation tasks, including searching, finding and replacing text, and even executing advanced scripting. This article will guide you through the basics of sed, explain how to use it for dynamic number replacement, and provide practical examples for beginners. What is sed? The sed command processes text line by line, allowing you to: Search for specific patterns. Replace text or number. Delete or insert rows. Convert text in various ways. It works in a non-interactive way, meaning it can process files or text streams without human intervention. Basic syntax of sed command sed [Options] 'Command' file illustrate: Options

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools