System/CentOS | Ubuntu

[CentOS 7] CPU, 메모리 사양 정보 확인

jykim23 2021. 3. 18. 11:06

CPU

lscpu <- 제일 자주 씀

cat /proc/cpuinfo

nproc

dmidecode -t processor

 

 

MEM

cat /proc/meminfo

free -h <- 제일 자주 씀
dmidecode -t 17 | egrep 'Momory|Size'
dmidecode -t memory

 

CPU 상세정보

# cat /proc/cpuinfo

CPU 상세 정보


코어 수
# nproc

 

CPU 코어 숫자


dmidecode 상세 스펙
# dmidecode -t processor

dmidecode -t processor


메모리 상세 스펙
# cat /proc/meminfo

메모리 상세 스펙


총 용량 
# free -h

free -h

 

메모리 슬록 확인

# dmidecode -t 17 | egrep 'Momory|Size'


dmidecode 상세 스펙
# dmidecode -t memory

dmidecode -t memory more

 

 

dmidecod -t [옵션]

더보기

       Type   Information 
       ──────────────────────────────────────────── 
          0   BIOS 
          1   System 
          2   Baseboard 
          3   Chassis 
          4   Processor 
          5   Memory Controller 

          6   Memory Module 
          7   Cache 
          8   Port Connector 
          9   System Slots 
         10   On Board Devices 
         11   OEM Strings 
         12   System Configuration Options 
         13   BIOS Language 
         14   Group Associations 
         15   System Event Log 
         16   Physical Memory Array 
         17   Memory Device 
         18   32-bit Memory Error 
         19   Memory Array Mapped Address 
         20   Memory Device Mapped Address 
         21   Built-in Pointing Device 
         22   Portable Battery 
         23   System Reset 
         24   Hardware Security 
         25   System Power Controls 
         26   Voltage Probe 
         27   Cooling Device 
         28   Temperature Probe 
         29   Electrical Current Probe 
         30   Out-of-band Remote Access 
         31   Boot Integrity Services 
         32   System Boot 
         33   64-bit Memory Error 
         34   Management Device 
         35   Management Device Component 
         36   Management Device Threshold Data 
         37   Memory Channel 
         38   IPMI Device 
         39   Power Supply 
         40   Additional Information 
         41   Onboard Devices Extended Information 
         10   On Board Devices 
         11   OEM Strings 
         12   System Configuration Options 
         13   BIOS Language 
         14   Group Associations 
         15   System Event Log 
         16   Physical Memory Array 
         17   Memory Device 
         18   32-bit Memory Error 
         19   Memory Array Mapped Address 
         20   Memory Device Mapped Address 
         21   Built-in Pointing Device 
         22   Portable Battery 
         23   System Reset 
         24   Hardware Security 
         25   System Power Controls 
         26   Voltage Probe 
         27   Cooling Device 
         28   Temperature Probe 
         29   Electrical Current Probe 
         30   Out-of-band Remote Access 
         31   Boot Integrity Services 
         32   System Boot 
         33   64-bit Memory Error 
         34   Management Device 
         35   Management Device Component 
         36   Management Device Threshold Data 
         37   Memory Channel 
         38   IPMI Device 
         39   Power Supply 
         40   Additional Information 
         41   Onboard Devices Extended Information 
         42   Management Controller Host Interface

 

'System > CentOS | Ubuntu' 카테고리의 다른 글

[CentOS] LVM ext4 - 초기 구성, 생성, 삭제  (0) 2021.04.13
[CentOS 7] vsftpd 설치 및 응용  (0) 2021.03.19
[CentOS 7] sshd 설정  (0) 2021.03.17
[CentOS 7] iptables 로그  (0) 2020.06.01
[CentOS 6] VirtualBox 설치  (0) 2019.08.05