Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to check the number of CPU and cores in Linux system

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This "Linux system how to check the number of CPU, core" article, the article sample code is introduced in great detail, with a certain reference value, interested friends must refer to, for "Linux system how to view the number of CPU, core", Xiaobian sorted out the following knowledge points, please follow the pace of the editor step by step slowly understand, then let us enter the topic.

# Total number of cores = number of physical CPU X number of cores per physical CPU

# Total logical CPU = number of physical CPU X number of cores per physical CPU X number of super threads

Check the number of physical CPU cat / proc/cpuinfo | grep "physical id" | sort | uniq | wc-l

Check the number of core (that is, number of cores) cat / proc/cpuinfo in each physical CPU | grep "cpu cores" | uniq

Check the number of logical CPU cat / proc/cpuinfo | grep "processor" | wc-l

View CPU information (model number)

Cat / proc/cpuinfo | grep name | cut-f2-d: | uniq-c

View memory information

# cat / proc/meminfo

What is Linux system Linux is a free-to-use and free-spread UNIX-like operating system, is a POSIX-based multi-user, multi-task, multi-threaded and multi-CPU operating system, using Linux can run major Unix tools, applications and network protocols.

The above is all the contents of the article "how to check the number and number of CPU in Linux system". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report