이미 문의하신 내용이라 죄송합니다. 해결책을 찾을 수 없습니다. 궁금한 점이 몇 가지 있습니다.ㅋㅋㅋ출력: 1. *메모리 섹션에 있는 이 줄은 무엇을 의미합니까? (*-bank:1 및 *-bank:3에도 동일하게 나타남)
*-bank:0
description: DIMMProject-Id-Version: lshwReport-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>POT-Creation-Date: 2009-10-08 14:02+0200PO-Revision-Date: 2012-02-02 13:04+0000Last-Translator: Joel Addison <[email protected]>Language-Team: English (Australia) <[email protected]>MIME-Version: 1.0Content-Type: text/plain; charset=UTF-8Content-Transfer-Encoding: 8bitX-Launchpad-Export-Date: 2015-02-19 11:31+0000X-Generator: Launchpad (build 17341) [empty]
physical id: 0
slot: ChannelA-DIMM0
2. 다음 섹션에서 청구되지 않음은 무엇을 의미합니까? 배터리가 너무 빨리 소모되는 이유가 있을까요?
*-serial UNCLAIMED
description: SMBus
product: Lynx Point-LP SMBus Controller
vendor: Intel Corporation
physical id: 1f.3
bus info: pci@0000:00:1f.3
version: 04
width: 64 bits
clock: 33MHz
configuration: latency=0
resources: memory:e0618000-e06180ff ioport:efa0(size=32)
*-power UNCLAIMED
description: TBD by ODM
product: TBD by ODM
vendor: TBD by ODM
physical id: 2
version: 1.0
serial: TBD by ODM
capacity: 32768mWh
답변1
첫 번째 줄은 번역 오류 메시지처럼 보입니다. 달려가서 LANG=C lshw
사라지는지 확인하세요. 두 번째는 단순히 마더보드에 어떤 드라이버도 주장하지 않은 I2C 컨트롤러가 있다는 뜻입니다. 이는 설치된 DIMM 종류를 식별하기 위해 BIOS에서 사용되기 때문에 정상적인 현상입니다. 세 번째는 공급업체가 설명을 제대로 입력하지 않은 전원 공급 장치인 것 같습니다. 왜 그것이 청구되지 않았는지 잘 모르겠지만 추가 전력 소모가 발생하지 않습니다.
답변2
- 'UNCLAIMED'는 단순히 커널에 이 장치와 관련된 드라이버가 없음을 의미합니다.
답변3
우분투 버그#1597886이 문제는 2016년에 제출되었으며 올해(2020) 초에 수정되었습니다.
수정 사항소스 코드 의 빈 문자열에 정확히 하나의 공백을 추가하는 것으로 구성됩니다 lshw
.
diff --git a/src/core/dmi.cc b/src/core/dmi.cc
@@ -495,9 +495,9 @@ static const char *dmi_memory_array_location(u8 num)
{
static const char *memory_array_location[] =
{
- "", /* 0x00 */
- "",
- "",
+ " ", /* 0x00 */
+ " ",
+ " ",
N_("System board or motherboard"),
N_("ISA add-on card"),
N_("EISA add-on card"),
[...]