linux查看内存和CPU型号
时间: 2024-08-14 18:07:30 浏览: 54
在Linux系统中,你可以通过命令行工具来查看内存和CPU的信息。以下是两个常用命令:
1. 查看内存信息:
使用`free -h` 或 `top` 命令可以查看总内存、已用内存、空闲内存等基本信息。`free -m` 显示的是以兆字节(MB)为单位的详细报告。
2. 查看CPU型号:
对于CPU型号,你可以使用`cat /proc/cpuinfo` 命令来查看详细的硬件信息,其中包括CPU品牌、系列、核心数、速度等。如果你想知道更简洁的CPU型号,可以尝试`lscpu` 或者 `uname -h
total used free shared buff/cache available
Mem: 16Gi 2.5Gi 9.4Gi 176Mi 4.0Gi 13.8Gi
Swap: 0B 0B 0B
$ cat /proc/cpuinfo | grep 'model name'
model name : Intel(R) Core(TM) i5-8250U CPU @ 1.60GHz
$ lscpu
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
CPU(s): 4
On-line CPU(s) list: 0-3
Thread(s) per core: 2
Core(s) per socket: 2
...
阅读全文