lshw 输出:内存中无人认领的奇怪行

lshw 输出:内存中无人认领的奇怪行

很抱歉,如果这个问题已经有人问过了,我找不到任何解决方案。我有一些关于瘦身输出: 1. *memory section 中的这几行是什么意思?(*-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. 下面部分中的 UNCLAIMED 是什么意思?这可能是电池耗电如此之快的原因吗?

*-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 控制器,这是正常的,因为它只是被 BIOS 用来识别您安装了哪种 DIMM。第三行似乎是您的供应商没有正确填写描述的电源。我不确定为什么没有声明,但它不会导致任何额外的功耗。

答案2

  1. “UNCLAIMED”只是意味着内核没有与该设备关联的驱动程序。

答案3

Ubuntu 错误#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"),
[...]

相关内容