AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / ubuntu / 问题 / 1392700
Accepted
Mudit
Mudit
Asked: 2022-02-14 08:21:33 +0800 CST2022-02-14 08:21:33 +0800 CST 2022-02-14 08:21:33 +0800 CST

所有这些日志消息是什么意思?

  • 772

我正在使用 Ubuntu 20.04.3 LTS 内核版本 5.16.3-051603-generic。我在日志应用程序中收到这些日志消息。这些消息是什么意思?我需要担心吗?它们会引起一些大问题吗?

[drm:dc_link_detect_helper [amdgpu]] *ERROR* No EDID read.
Failed to start Network Manager Wait Online.
GetManagedObjects() failed: org.freedesktop.DBus.Error.TimedOut: Failed to activate service 'org.bluez': timed out (service_start_timeout=25000ms)
gkr-pam: unable to locate daemon control file
Device: /dev/sda [SAT], ATA error count increased from 13138 to 13142
kfd kfd: amdgpu: device 1002:15d8 NOT added due to errors
[drm:dc_link_detect_helper [amdgpu]] *ERROR* No EDID read.
Buffer I/O error on dev sda1, logical block 105, async page read
ata1.00: error: { UNC }
I/O error, dev sda, sector 249133056 op 0x0:(READ) flags 0x83700 phys_seg 16 prio class 0
ata1.00: status: { DRDY }
Buffer I/O error on dev sda1, logical block 105, async page read
I/O error, dev sda, sector 2888 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
ata1.00: error: { UNC }
I/O error, dev sda, sector 1287680 op 0x0:(READ) flags 0x80700 phys_seg 2 prio class 0
ata1.00: status: { DRDY }
ACPI Error: Aborting method \_SB.PCI0.GP17.VGA.LCD._BCM due to previous error (AE_NOT_FOUND) (20210930/psparse-529)

为了清楚起见,这是日志消息的屏幕截图: 截屏

如果您想查看包含在主消息中的那些消息,可以告诉我。

谢谢


更新

磁盘应用程序中SMART 数据和自检窗口的屏幕截图。(我昨天进行了自检): 截图2 截图3 截图4


更新(在解决方案之后)我一开始就明白了。他们的意思是什么?在此处输入图像描述

log
  • 1 1 个回答
  • 151 Views

1 个回答

  • Voted
  1. Best Answer
    heynnema
    2022-02-15T07:11:54+08:002022-02-15T07:11:54+08:00

    SSD固件

    威刚 SU650 (V8X04c12) 见https://www.adata.com/en/download/503?tab=downloads。或查看https://www.adata.com/pk/support/consumer?tab=downloads&download=software。有 2021 年 11 月的更新可用。

    注意:在进行固件更新之前备份您的重要数据。

    NCQ 错误

    grep -i FPDMA /var/log/syslog*

    本机命令队列 (NCQ) 是串行 ATA 协议的扩展,允许硬盘驱动器在内部优化接收到的读取和写入命令的执行顺序。

    编辑sudo -H gedit /etc/default/grub并更改以下行以包含此额外参数。然后sudo update-grub将更改写入磁盘。重启。监控挂起/等,并观察grep -i FPDMA /var/log/syslog*或dmesg持续的错误消息。

    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash libata.force=noncq"
    

    坏块

    sudo badblocks -v /dev/sda7 > badsectors.txt不应使用该命令。尤其是在 SSD 上。

    如果您阅读man badblocks,您会看到“...强烈建议用户不要直接运行 badblocks,而是使用 e2fsck 和 mke2fs 程序的 -c 选项...”。

    这是对硬盘进行不良阻塞的正确方法...

    注意:不要中止坏块扫描!

    注意:请勿对 SSD 进行坏块

    注意:首先备份您的重要文件!

    注意:这将需要几个小时

    注意:您可能有待处理的 HDD 故障

    以“试用 Ubuntu”模式启动到 Ubuntu Live DVD/USB。

    在terminal...

    sudo fdisk -l# 识别所有“Linux 文件系统”分区

    sudo e2fsck -fcky /dev/sdXX# 只读测试

    或者

    sudo e2fsck -fccky /dev/sdXX# 无损读/写测试(推荐)

    -k 很重要,因为它保存了以前的坏块表,并将任何新的坏块添加到该表中。如果没有 -k,您将丢失所有先前的坏块信息。

    -fccky 参数...

       -f    Force checking even if the file system seems clean.
    
       -c    This option causes e2fsck to use badblocks(8) program to do
             a read-only scan of the device in order to find any bad blocks.
             If any bad blocks are found, they are added to the bad block
             inode to prevent them from being allocated to a file or direc‐
             tory.  If this option is specified twice, then the bad block scan
             will be done using a non-destructive read-write test.
    
       -k    When combined with the -c option, any existing bad blocks in the
             bad blocks list are preserved, and any new bad blocks found by
             running badblocks(8) will be added to the existing bad blocks
             list.
    
       -y    Assume an answer of `yes' to all questions; allows e2fsck to be
             used non-interactively. This option may not be specified at the
             same time as the -n or -p options.
    
    • 1

相关问题

  • Apache 和 PHP 日志文件在哪里?

  • 是否有以图形方式记录/显示文件系统 I/O 的应用程序?

  • 当应用程序崩溃而没有输出错误时,是否有我可以检查的日志?

  • 如何更改确定有效用户密码的规则?[关闭]

  • 我如何知道 Ubuntu 的安装日期?

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    如何运行 .sh 脚本?

    • 16 个回答
  • Marko Smith

    如何安装 .tar.gz(或 .tar.bz2)文件?

    • 14 个回答
  • Marko Smith

    如何列出所有已安装的软件包

    • 24 个回答
  • Marko Smith

    无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗?

    • 25 个回答
  • Martin Hope
    Flimm 如何在没有 sudo 的情况下使用 docker? 2014-06-07 00:17:43 +0800 CST
  • Martin Hope
    Ivan 如何列出所有已安装的软件包 2010-12-17 18:08:49 +0800 CST
  • Martin Hope
    La Ode Adam Saputra 无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗? 2010-11-30 18:12:48 +0800 CST
  • Martin Hope
    David Barry 如何从命令行确定目录(文件夹)的总大小? 2010-08-06 10:20:23 +0800 CST
  • Martin Hope
    jfoucher “以下软件包已被保留:”为什么以及如何解决? 2010-08-01 13:59:22 +0800 CST
  • Martin Hope
    David Ashford 如何删除 PPA? 2010-07-30 01:09:42 +0800 CST

热门标签

10.10 10.04 gnome networking server command-line package-management software-recommendation sound xorg

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve