在Ubuntu中启动渲染渲染错误:“ata1.00:revalidation failed(errno = -5)”


3

有时,非确定性地,当我启动时,我收到此错误:

[   xx.xxxxxx] ata1.00: revalidation failed (errno=-5)
[   xx.xxxxxx] ata2.00: revalidation failed (errno=-5)

在哪里 x 字符是一些数字。

有一个线程, ATA重新验证失败 。但当然,这只是一堆“我也是!”帖子,因为它不是Stack Overflow。

我该如何解决?

Answers:


2

编辑你的 /boot/grub/menu.lst 以root身份登录并转到以下部分:

## ## Start Default Options ##
## default kernel options
## default kernel options for automagic boot options
## If you want special options for specific kernels use kopt_x_y_z
## where x.y.z is kernel version. Minor versions can be omitted.
## e.g. kopt=root=/dev/hda1 ro
##      kopt_2_6_8=root=/dev/hdc1 ro
##      kopt_2_6_8_2_686=root=/dev/hdc2 ro
# (some_options_already_here)

除了只有一个哈希标记的部分 '#',将这些选项添加到行尾:

irqpoll all_generic_ide

所以这部分看起来像这样:

## ## Start Default Options ##
## default kernel options
## default kernel options for automagic boot options
## If you want special options for specific kernels use kopt_x_y_z
## where x.y.z is kernel version. Minor versions can be omitted.
## e.g. kopt=root=/dev/hda1 ro
##      kopt_2_6_8=root=/dev/hdc1 ro
##      kopt_2_6_8_2_686=root=/dev/hdc2 ro
# (some_options_already_here) irqpoll all_generic_ide

编辑 kernel 在文件的其余部分中的行,因为当Ubuntu自动更新内核列表时,它将从前面提到的部分中提取选项,并覆盖所有 kernel 线。


没关系,这实际上不起作用。
Neil
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.