Linux云计算进阶-10条指令在1分钟内排查出服务器问题之dmesg篇 ...

打印 上一主题 下一主题

主题 669|帖子 669|积分 2007

dmesg 可以检察Linux 内核引导干系的所有信息

dmesg’命令装备故障的诊断是非常重要的。在‘dmesg’命令的资助下进行硬件的连接或断开连接操作时,我们可以看到硬件的检测大概断开连接的信息。‘dmesg’命令在多数基于Linux和Unix的操作体系中都可以使用。
列出加载到内核中的所有驱动

我们可以使用如‘more’。 ‘tail’, ‘less ’大概‘grep’笔墨处置惩罚工具来处置惩罚‘dmesg’命令的输出。由于dmesg日记的输出不适合在一页中完全显示,因此我们使用管道(pipe)将其输出送到more大概less命令单页显示。
  1. [root@hanyw-Bash-Python ten-command-performance]# dmesg | more
  2. [    0.000000] Linux version 5.14.0-402.el9.x86_64 (mockbuild@x86-05.stream.rdu2.redhat.com) (gcc (GCC) 11.4.1 2023060
  3. 5 (Red Hat 11.4.1-2), GNU ld version 2.35.2-42.el9) #1 SMP PREEMPT_DYNAMIC Thu Dec 21 19:46:35 UTC 2023
  4. [    0.000000] The list of certified hardware and cloud instances for Red Hat Enterprise Linux 9 can be viewed at the
  5. Red Hat Ecosystem Catalog, https://catalog.redhat.com.
  6. [    0.000000] Command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.14.0-402.el9.x86_64 root=/dev/mapper/cs-root ro rd.lvm.
  7. lv=cs/root
  8. [    0.000000] Disabled fast string operations
  9. [    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
  10. [    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
  11. [    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
  12. [    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
  13. [    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
  14. [    0.000000] signal: max sigframe size: 1776
  15. [    0.000000] BIOS-provided physical RAM map:
  16. [    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ebff] usable
  17. [    0.000000] BIOS-e820: [mem 0x000000000009ec00-0x000000000009ffff] reserved
  18. [    0.000000] BIOS-e820: [mem 0x00000000000dc000-0x00000000000fffff] reserved
  19. [    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007fedffff] usable
  20. [    0.000000] BIOS-e820: [mem 0x000000007fee0000-0x000000007fefefff] ACPI data
  21. [    0.000000] BIOS-e820: [mem 0x000000007feff000-0x000000007fefffff] ACPI NVS
  22. [    0.000000] BIOS-e820: [mem 0x000000007ff00000-0x000000007fffffff] usable
  23. [    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
  24. [    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
  25. [    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
  26. [    0.000000] BIOS-e820: [mem 0x00000000fffe0000-0x00000000ffffffff] reserved
  27. [    0.000000] NX (Execute Disable) protection: active
  28. [    0.000000] SMBIOS 2.7 present.
  29. [    0.000000] DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 11/12/2020
  30. [    0.000000] vmware: hypercall mode: 0x02
  31. [    0.000000] Hypervisor detected: VMware
  32. [    0.000000] vmware: TSC freq read from hypervisor : 3600.000 MHz
  33. [    0.000000] vmware: Host bus clock speed read from hypervisor : 66000000 Hz
  34. --更多--
复制代码
如下的指令也是雷同的区别。
  1. dmesg | less
复制代码
输出如下。
  1. [root@hanyw-Bash-Python ten-command-performance]# dmesg | less
  2. [    0.000000] Linux version 5.14.0-402.el9.x86_64 (mockbuild@x86-05.stream.rdu2.redhat.com) (gcc (GCC) 11.4.1 20230605 (Red Hat 11.4.1-2), GNU ld version 2.35.2-42.el9) #1 SMP PREEMPT_DYNAMIC Thu Dec 21 19:46:35 UTC 2023[    0.000000] The list of certified hardware and cloud instances for Red Hat Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.[    0.000000] Command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.14.0-402.el9.x86_64 root=/dev/mapper/cs-root ro rd.lvm.lv=cs/root[    0.000000] Disabled fast string operations[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.[    0.000000] signal: max sigframe size: 1776[    0.000000] BIOS-provided physical RAM map:[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ebff] usable[    0.000000] BIOS-e820: [mem 0x000000000009ec00-0x000000000009ffff] reserved[    0.000000] BIOS-e820: [mem 0x00000000000dc000-0x00000000000fffff] reserved[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007fedffff] usable[    0.000000] BIOS-e820: [mem 0x000000007fee0000-0x000000007fefefff] ACPI data[    0.000000] BIOS-e820: [mem 0x000000007feff000-0x000000007fefffff] ACPI NVS[    0.000000] BIOS-e820: [mem 0x000000007ff00000-0x000000007fffffff] usable[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved[    0.000000] BIOS-e820: [mem 0x00000000fffe0000-0x00000000ffffffff] reserved[    0.000000] NX (Execute Disable) protection: active[    0.000000] SMBIOS 2.7 present.[    0.000000] DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 11/12/2020[    0.000000] vmware: hypercall mode: 0x02[    0.000000] Hypervisor detected: VMware[    0.000000] vmware: TSC freq read from hypervisor : 3600.000 MHz[    0.000000] vmware: Host bus clock speed read from hypervisor : 66000000 Hz[    0.000000] vmware: using clock offset of 26849061647 ns[    0.000020] tsc: Detected 3600.000 MHz processor[    0.001616] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved[    0.001619] e820: remove [mem 0x000a0000-0x000fffff] usable[    0.001623] last_pfn = 0x80000 max_arch_pfn = 0x400000000[    0.001642] total RAM covered: 3072M[    0.001885] Found optimal setting for mtrr clean up[    0.001886]  gran_size: 64K  chunk_size: 64K         num_reg: 2      lose cover RAM: 0G[    0.001889] MTRR map: 6 entries (5 fixed + 1 variable; max 21), built from 8 variable MTRRs[    0.001890] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  [    0.009247] found SMP MP-table at [mem 0x000f6a70-0x000f6a7f]:
复制代码
列出所有被检测到的硬件

要显示所有被内核检测到的硬盘装备,你可以使用‘grep’命令搜索‘sda’关键词,如下
  1. [root@hanyw-Bash-Python ten-command-performance]# dmesg |grep sd[a-z]
  2. [    0.000000] Command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.14.0-402.el9.x86_64 root=/dev/mapper/cs-root ro rd.lvm.lv=cs/root
  3. [    0.150022] Kernel command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.14.0-402.el9.x86_64 root=/dev/mapper/cs-root ro rd.lvm.lv=cs/root
  4. [    0.150061] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.14.0-402.el9.x86_64", will be passed to user space.
  5. [    3.366214]     BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.14.0-402.el9.x86_64
  6. [    5.559567] sd 2:0:0:0: [sda] 251658240 512-byte logical blocks: (129 GB/120 GiB)
  7. [    5.559645] sd 2:0:0:0: [sda] Write Protect is off
  8. [    5.559647] sd 2:0:0:0: [sda] Mode Sense: 61 00 00 00
  9. [    5.559754] sd 2:0:0:0: [sda] Cache data unavailable
  10. [    5.559755] sd 2:0:0:0: [sda] Assuming drive cache: write through
  11. [    5.569553]  sda: sda1 sda2
  12. [    5.569701] sd 2:0:0:0: [sda] Attached SCSI disk
  13. [   25.628710] XFS (sda1): Mounting V5 Filesystem 33b3fa8b-f02c-409d-afc0-cccd91030610
  14. [   31.721751] XFS (sda1): Ending clean mount
复制代码
__ 注解 sda 表现第一块 SATA硬盘,sdb表现第二块SATA硬盘。若想检察IDE硬盘搜索hda或hdb关键词。__
只输出dmesg命令的前30行日记

在‘dmesg’命令后跟随‘head’命令来显示开始几行,‘dmesg | head -30′命令将显示开始的前20行
  1. [root@hanyw-Bash-Python ~]# dmesg | head -30
  2. [    0.000000] Linux version 5.14.0-402.el9.x86_64 (mockbuild@x86-05.stream.rdu2.redhat.com) (gcc (GCC) 11.4.1 20230605 (Red Hat 11.4.1-2), GNU ld version 2.35.2-42.el9) #1 SMP PREEMPT_DYNAMIC Thu Dec 21 19:46:35 UTC 2023
  3. [    0.000000] The list of certified hardware and cloud instances for Red Hat Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.
  4. [    0.000000] Command line: BOOT_IMAGE=(hd0,msdos1)/vmlinuz-5.14.0-402.el9.x86_64 root=/dev/mapper/cs-root ro rd.lvm.lv=cs/root
  5. [    0.000000] Disabled fast string operations
  6. [    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
  7. [    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
  8. [    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
  9. [    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
  10. [    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
  11. [    0.000000] signal: max sigframe size: 1776
  12. [    0.000000] BIOS-provided physical RAM map:
  13. [    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ebff] usable
  14. [    0.000000] BIOS-e820: [mem 0x000000000009ec00-0x000000000009ffff] reserved
  15. [    0.000000] BIOS-e820: [mem 0x00000000000dc000-0x00000000000fffff] reserved
  16. [    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007fedffff] usable
  17. [    0.000000] BIOS-e820: [mem 0x000000007fee0000-0x000000007fefefff] ACPI data
  18. [    0.000000] BIOS-e820: [mem 0x000000007feff000-0x000000007fefffff] ACPI NVS
  19. [    0.000000] BIOS-e820: [mem 0x000000007ff00000-0x000000007fffffff] usable
  20. [    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
  21. [    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
  22. [    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
  23. [    0.000000] BIOS-e820: [mem 0x00000000fffe0000-0x00000000ffffffff] reserved
  24. [    0.000000] NX (Execute Disable) protection: active
  25. [    0.000000] SMBIOS 2.7 present.
  26. [    0.000000] DMI: VMware, Inc. VMware Virtual Platform/440BX Desktop Reference Platform, BIOS 6.00 11/12/2020
  27. [    0.000000] vmware: hypercall mode: 0x02
  28. [    0.000000] Hypervisor detected: VMware
  29. [    0.000000] vmware: TSC freq read from hypervisor : 3600.000 MHz
  30. [    0.000000] vmware: Host bus clock speed read from hypervisor : 66000000 Hz
  31. [    0.000000] vmware: using clock offset of 26849061647 ns
复制代码
只输出dmesg命令最后20行日记

在‘dmesg’命令后跟随‘tail’命令(‘ dmesg | tail -fn20’)来输出‘dmesg’命令的最后20行日记,当你插入可移动装备时它是非常有效的。
  1. [root@hanyw-Bash-Python ~]# dmesg | tail -fn 20
  2. [   25.739895] vmwgfx 0000:00:0f.0: [drm] DMA map mode: Caching DMA mappings.
  3. [   25.740440] vmwgfx 0000:00:0f.0: [drm] Legacy memory limits: VRAM = 4096 kB, FIFO = 256 kB, surface = 0 kB
  4. [   25.740442] vmwgfx 0000:00:0f.0: [drm] MOB limits: max mob size = 262144 kB, max mob pages = 196608
  5. [   25.740444] vmwgfx 0000:00:0f.0: [drm] Max GMR ids is 64
  6. [   25.740445] vmwgfx 0000:00:0f.0: [drm] Max number of GMR pages is 65536
  7. [   25.740446] vmwgfx 0000:00:0f.0: [drm] Maximum display memory size is 262144 kiB
  8. [   25.766524] vmwgfx 0000:00:0f.0: [drm] Screen Target display unit initialized
  9. [   25.770299] vmwgfx 0000:00:0f.0: [drm] Fifo max 0x00040000 min 0x00001000 cap 0x0000077f
  10. [   25.770815] vmwgfx 0000:00:0f.0: [drm] Using command buffers with DMA pool.
  11. [   25.770821] vmwgfx 0000:00:0f.0: [drm] Available shader model: Legacy.
  12. [   25.845914] [drm] Initialized vmwgfx 2.20.0 20211206 for 0000:00:0f.0 on minor 0
  13. [   25.852749] fbcon: vmwgfxdrmfb (fb0) is primary device
  14. [   25.853553] Console: switching to colour frame buffer device 160x50
  15. [   25.856173] vmwgfx 0000:00:0f.0: [drm] fb0: vmwgfxdrmfb frame buffer device
  16. [   31.721751] XFS (sda1): Ending clean mount
  17. [   36.632583] NET: Registered PF_VSOCK protocol family
  18. [   47.484728] Warning: Unmaintained driver is detected: ip_set
  19. [   47.484730] Warning: Deprecated Driver is detected: ip_set will not be maintained in a future major release and may be disabled
  20. [   47.694148] vmxnet3 0000:03:00.0 ens160: intr type 3, mode 0, 2 vectors allocated
  21. [   47.694537] vmxnet3 0000:03:00.0 ens160: NIC Link is Up 10000 Mbps
复制代码
由于‘dmesg’命令的输出实在太长了,在此中搜索某个特定的字符串是非常困难的。因此,有须要过滤出一些包含‘usb’ ‘dma’ ‘tty’ ‘memory’等字符串的日记行。grep 命令 的‘-i’选项表现忽略巨细写
  1. [root@hanyw-Bash-Python ~]# dmesg | grep -i memory
  2. [    0.009403] ACPI: Reserving FACP table memory at [mem 0x7fefee73-0x7fefef66]
  3. [    0.009404] ACPI: Reserving DSDT table memory at [mem 0x7feead55-0x7fefee72]
  4. [    0.009405] ACPI: Reserving FACS table memory at [mem 0x7fefffc0-0x7fefffff]
  5. [    0.009405] ACPI: Reserving FACS table memory at [mem 0x7fefffc0-0x7fefffff]
  6. [    0.009406] ACPI: Reserving BOOT table memory at [mem 0x7feead2d-0x7feead54]
  7. [    0.009406] ACPI: Reserving APIC table memory at [mem 0x7feea5eb-0x7feead2c]
  8. [    0.009407] ACPI: Reserving MCFG table memory at [mem 0x7feea5af-0x7feea5ea]
  9. [    0.009407] ACPI: Reserving SRAT table memory at [mem 0x7fee9757-0x7fee9ffe]
  10. [    0.009408] ACPI: Reserving HPET table memory at [mem 0x7fee971f-0x7fee9756]
  11. [    0.009408] ACPI: Reserving WAET table memory at [mem 0x7fee96f7-0x7fee971e]
  12. [    0.009720] Early memory node ranges
  13. [    0.026936] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
  14. [    0.026938] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff]
  15. [    0.026938] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
  16. [    0.026939] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dbfff]
  17. [    0.026939] PM: hibernation: Registered nosave memory: [mem 0x000dc000-0x000fffff]
  18. [    0.026940] PM: hibernation: Registered nosave memory: [mem 0x7fee0000-0x7fefefff]
  19. [    0.026941] PM: hibernation: Registered nosave memory: [mem 0x7feff000-0x7fefffff]
  20. [    0.175052] Memory: 260860K/2096628K available (16384K kernel code, 5616K rwdata, 11640K rodata, 3872K init, 6008K bss, 156564K reserved, 0K cma-reserved)
  21. [    0.697805] x86/mm: Memory block size: 128MB
  22. [    1.961405] Non-volatile memory driver v1.3
  23. [    2.915414] Freeing initrd memory: 35840K
  24. [    3.269535] Freeing unused decrypted memory: 2028K
  25. [    3.270606] Freeing unused kernel image (initmem) memory: 3872K
  26. [    3.273128] Freeing unused kernel image (rodata/data gap) memory: 648K
  27. [   25.740440] vmwgfx 0000:00:0f.0: [drm] Legacy memory limits: VRAM = 4096 kB, FIFO = 256 kB, surface = 0 kB
  28. [   25.740446] vmwgfx 0000:00:0f.0: [drm] Maximum display memory size is 262144 kiB
复制代码
显示时间戳

使用dmesg -T可以显示对应事故的时间戳。

人性化显示

使用dmesg -H指令,人性化显示信息,如下图所示。

过滤体系初始化时的错误信息

服务器在初始化启动和启动后运行的一段时间内,假如有对应的报错,会将报错信息进行收集,然后通过dmesg指令可以检察,如下。
  1. [root@hanyw-Bash-Python ~]# dmesg -T |grep  -i 'error\|fail\|warn'
  2. [一 1月 29 16:25:04 2024] pci 0000:00:15.3: BAR 13: failed to assign [io  size 0x1000]
  3. [一 1月 29 16:25:04 2024] pci 0000:00:15.4: BAR 13: failed to assign [io  size 0x1000]
  4. [一 1月 29 16:25:04 2024] pci 0000:00:15.5: BAR 13: failed to assign [io  size 0x1000]
  5. [一 1月 29 16:25:04 2024] pci 0000:00:15.6: BAR 13: failed to assign [io  size 0x1000]
  6. [一 1月 29 16:25:04 2024] pci 0000:00:15.7: BAR 13: failed to assign [io  size 0x1000]
  7. [一 1月 29 16:25:04 2024] pci 0000:00:16.3: BAR 13: failed to assign [io  size 0x1000]
  8. [一 1月 29 16:25:04 2024] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
  9. [一 1月 29 16:25:04 2024] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
  10. [一 1月 29 16:25:04 2024] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
  11. [一 1月 29 16:25:04 2024] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
  12. [一 1月 29 16:25:04 2024] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
  13. [一 1月 29 16:25:04 2024] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
  14. [一 1月 29 16:25:04 2024] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
  15. [一 1月 29 16:25:04 2024] pci 0000:00:17.6: BAR 13: failed to assign [io  size 0x1000]
  16. [一 1月 29 16:25:04 2024] pci 0000:00:17.7: BAR 13: failed to assign [io  size 0x1000]
  17. [一 1月 29 16:25:04 2024] pci 0000:00:18.2: BAR 13: failed to assign [io  size 0x1000]
  18. [一 1月 29 16:25:04 2024] pci 0000:00:18.3: BAR 13: failed to assign [io  size 0x1000]
  19. [一 1月 29 16:25:04 2024] pci 0000:00:18.4: BAR 13: failed to assign [io  size 0x1000]
  20. [一 1月 29 16:25:04 2024] pci 0000:00:18.5: BAR 13: failed to assign [io  size 0x1000]
  21. [一 1月 29 16:25:04 2024] pci 0000:00:18.6: BAR 13: failed to assign [io  size 0x1000]
  22. [一 1月 29 16:25:04 2024] pci 0000:00:18.7: BAR 13: failed to assign [io  size 0x1000]
  23. [一 1月 29 16:25:04 2024] pci 0000:00:18.7: BAR 13: failed to assign [io  size 0x1000]
  24. [一 1月 29 16:25:04 2024] pci 0000:00:18.6: BAR 13: failed to assign [io  size 0x1000]
  25. [一 1月 29 16:25:04 2024] pci 0000:00:18.5: BAR 13: failed to assign [io  size 0x1000]
  26. [一 1月 29 16:25:04 2024] pci 0000:00:18.4: BAR 13: failed to assign [io  size 0x1000]
  27. [一 1月 29 16:25:04 2024] pci 0000:00:18.3: BAR 13: failed to assign [io  size 0x1000]
  28. [一 1月 29 16:25:04 2024] pci 0000:00:18.2: BAR 13: failed to assign [io  size 0x1000]
  29. [一 1月 29 16:25:04 2024] pci 0000:00:17.7: BAR 13: failed to assign [io  size 0x1000]
  30. [一 1月 29 16:25:04 2024] pci 0000:00:17.6: BAR 13: failed to assign [io  size 0x1000]
  31. [一 1月 29 16:25:04 2024] pci 0000:00:17.5: BAR 13: failed to assign [io  size 0x1000]
  32. [一 1月 29 16:25:04 2024] pci 0000:00:17.4: BAR 13: failed to assign [io  size 0x1000]
  33. [一 1月 29 16:25:04 2024] pci 0000:00:17.3: BAR 13: failed to assign [io  size 0x1000]
  34. [一 1月 29 16:25:04 2024] pci 0000:00:16.7: BAR 13: failed to assign [io  size 0x1000]
  35. [一 1月 29 16:25:04 2024] pci 0000:00:16.6: BAR 13: failed to assign [io  size 0x1000]
  36. [一 1月 29 16:25:04 2024] pci 0000:00:16.5: BAR 13: failed to assign [io  size 0x1000]
  37. [一 1月 29 16:25:04 2024] pci 0000:00:16.4: BAR 13: failed to assign [io  size 0x1000]
  38. [一 1月 29 16:25:04 2024] pci 0000:00:16.3: BAR 13: failed to assign [io  size 0x1000]
  39. [一 1月 29 16:25:04 2024] pci 0000:00:15.7: BAR 13: failed to assign [io  size 0x1000]
  40. [一 1月 29 16:25:04 2024] pci 0000:00:15.6: BAR 13: failed to assign [io  size 0x1000]
  41. [一 1月 29 16:25:04 2024] pci 0000:00:15.5: BAR 13: failed to assign [io  size 0x1000]
  42. [一 1月 29 16:25:04 2024] pci 0000:00:15.4: BAR 13: failed to assign [io  size 0x1000]
  43. [一 1月 29 16:25:04 2024] pci 0000:00:15.3: BAR 13: failed to assign [io  size 0x1000]
  44. [一 1月 29 16:25:08 2024] Warning: Unmaintained driver is detected: mptbase
  45. [一 1月 29 16:25:08 2024] Warning: Unmaintained driver is detected: mptscsih
  46. [一 1月 29 16:25:08 2024] Warning: Unmaintained driver is detected: mptspi
  47. [一 1月 29 16:25:50 2024] Warning: Unmaintained driver is detected: ip_set
  48. [一 1月 29 16:25:50 2024] Warning: Deprecated Driver is detected: ip_set will not be maintained in a future major release and may be disabled
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

九天猎人

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表