2014年12月3日 星期三

[Linux 常見問題] Linux 如何查看系統硬體的 記憶體(RAM)/CPU 資訊

Source From Here 
Preface 
Linux 要如何查看系統硬體 的 詳細記憶體(RAM) 與 CPU 資訊? 

查看 系統硬體 的 詳細記憶體(RAM)/CPU 資訊 
在 Linux 要查詢記憶體大小, 可以用下述指令: 
free - display information about free and used memory on the system
cat /proc/meminfo

 

要查詢詳細的 RAM 規格, ex: DDR2、DDR3 .. 等, 可以用下述指令: 
lshw - List hardware
dmidecode - DMI table decoder/SMBIOS (dmidecode -t 17 等同 dmidecode --type memory dmidecode --type 17)

 
 

要檢查 CPU 資訊, 就直接看 /proc/cpuinfo 內容: 
 

Supplement 
Install Lshw on RHEL, Fedora, Centos 
lshw - 查詢詳細硬體資訊工具

沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...