본문 바로가기

엔지니어/Linux

리눅스 상세 H/W정보 - dmidecode

728x90
반응형

리눅스 system 의 bios 및 디바이스 정보는 dmidecode 라는 프로그램으로 확인할 수 있다.

 

dmidecode 보통 기본으로 설치되며, 만약 설치되지 않았을 경우 아래와 같이 설치한다.

 

설치방법

1. ubuntu

# apt-get install dmidecode

2. fedora

# yum -y install dmidecode

3. source compile 방법

사이트  : http://www.nongnu.org/dmidecode/

소스 다운 후 압축해제-> make -> make install

 

수집방법

# dmidecode -t processor

or

# dmidecode

 

수집가능한 데이터

디바이스 타입(맨페이지 참조)
-t 타입
--------------------------
          0   BIOS
          1   System
          2   Base Board
          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 Device
------------------------------

-s 키워드
------------------------------
  bios
  system
  baseboard
  chassis
  processor
  memory
  cache
  connector
  slot
-------------------------------


참고사이트

http://www.nongnu.org/dmidecode/

반응형

'엔지니어 > Linux' 카테고리의 다른 글

Iptable QoS(DSCP)  (0) 2016.05.27
DNS서버(bind9)를 MySQL로 관리하기  (0) 2016.05.27
vpopmail + 스팸필터링  (0) 2016.05.27
GeoDNS BIND patch  (0) 2016.05.27
리눅스에서 Strace를 이용한 7가지 디버깅 예제  (0) 2016.05.26