답변:
이것은해야합니다 :
sudo lshw -short -C memory
클래스 lshw
와 함께 명령을 사용하십시오 memory
.
$ sudo lshw -C memory
# Some things about firmware and caches
*-memory
description: System Memory
physical id: 13
slot: System board or motherboard
size: 8GiB
*-bank:0
description: DIMM [empty]
product: [Empty]
vendor: [Empty]
physical id: 0
serial: [Empty]
slot: ChannelA-DIMM0
*-bank:1
description: SODIMM DDR3 Synchronous 1600 MHz (0.6 ns)
product: M471B5273DH0-CK0
vendor: Samsung
physical id: 1
serial: 34A8C7AF
slot: ChannelA-DIMM1
size: 4GiB
width: 64 bits
clock: 1600MHz (0.6ns)
# More banks.
보시다시피, DDR3 1600MHz RAM을 사용하고 있습니다.
다른 옵션은 dmidecode
다음과 같습니다.
$ sudo dmidecode -t memory
# dmidecode 2.9
SMBIOS 2.5 present.
Handle 0x003B, DMI type 16, 15 bytes
Physical Memory Array
Location: System Board Or Motherboard
Use: System Memory
Error Correction Type: Multi-bit ECC
Maximum Capacity: Unknown
Error Information Handle: Not Provided
Number Of Devices: 8
Handle 0x003D, DMI type 17, 27 bytes
Memory Device
Array Handle: 0x003B
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 4096 MB
Form Factor: DIMM
Set: None
Locator: DIMM_A1
Bank Locator: NODE 0 CHANNEL 0 DIMM 0
Type: Other
Type Detail: Synchronous
Speed: 1067 MHz (0.9 ns)
Manufacturer: 0x0198
Serial Number: 0xB12A9593
Asset Tag: Unknown
Part Number: 9965426-037.A00LF
# more such devices
(로부터 알 수있는 바와 같이,이 ECC 메모리와 서버위한 Error Correction Type
필드와 의 차이점 Data Width
과Total Width
).
두 도구 모두 ubuntu-standard
패키지의 종속성이며 모든 우분투 시스템에서 기본적으로 사용 가능해야합니다. hwinfo
13.10 이후 더 이상 우분투에서 사용할 수없는 또 다른 도구가있었습니다 .
이 정보 만 얻을 수는 dmidecode
있지만 grepping 대신 올바른 유형을 사용하는 것이 더 깨끗합니다.
sudo dmidecode --type memory
sudo dmidecode -t memory | less -N
이렇게하면 원하는 모든 정보를 얻을 수 있습니다.
sudo dmidecode | grep -A 15 Memory