Answers:
编辑你的 /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
线。