blk_update_request: I/O error, dev fd0, sector 0

CentOS Linux系统在控制台输出以上信息,解决办法:

系统启动时进入bios

Advanced -> I/O Device Configuration -> Floppy disk controller -> [Enabled] 改为 [Disabled]
记得F10保存。

因为没有软盘,系统启动时加载了软盘驱动。

[[email protected] ~]# lsmod | grep -i floppy
[[email protected] ~]#

确认floppy该模块没有启用即可。

原文地址:https://www.cnblogs.com/zhouwanchun/p/12552742.html

时间: 2024-10-29 14:35:56

blk_update_request: I/O error, dev fd0, sector 0的相关文章

win10&hyper上装Ubuntu出现没有找到dev fd0, sector 0 错误

win10 hyper装 ubuntu blk_update_request:I/O error,dev sr0,sector0 错误 配置好安装重启后出现 blk_update_request: I/O error, dev fd0, sector 0 系统启动找不到启动的启动文件,原因是Hyper默认设置启动cd软盘启动. 设置启动 然后再重新启动系统就可以了. 用Hyper省去安装VM了.

end_request: I/O error, dev mtdblock2, sector 0 Buffer I

内核移植时遇到这个错误: end_request: I/O error, dev mtdblock2, sector 0 Buffer I/O error on device mtdblock2, logical block 0 原因分析:由于内核是通过uboot烧写到nandflash中,因此uboot产生的ecc校验码与内核的ecc校验码不同,所以需要关闭内核的ecc校验. 解决方法: 打开内核目录中的s3c2410.c文件在内核源码中的drivers/mtd/nand目录中 在s3c241

磁盘 blk_update_request: I/O error

1.尝试1: 解决 blk_update_request: I/O error, dev fd0, sector 0 错误 参考文档: https://bbs.archlinux.org/viewtopic.php?pid=1166918#p1166918 http://www.cyberciti.biz/faq/linux-end_request-ioerror-dev-fd0-sector0/ 在开启了软驱驱动控制器的硬件上引导 Linux 时会出现如下提示:blk_update_reque

CentOS7.0开机报错“piix4_smbus”和“dev fd0”的解决办法

系统:CentOS 7.0 X64 报错现象: 此问题包含了两个错误: 错误1: piix4_smbus host smbus controller not enabled 修改办法: [[email protected] ~]# lsmod | grep i2c i2c_piix4              22106  0  i2c_core               40325  2 drm,i2c_piix4 [[email protected] ~]# vi /etc/modprob

error: <class 'xml.parsers.expat.ExpatError'>, syntax error: line 1, column 0: file: /usr/local/lib/python2.7/xmlrpclib.py line: 557

当linux设备上开启sonar6.2时, supervisorctl status报如下错误: error: <class 'xml.parsers.expat.ExpatError'>, syntax error: line 1, column 0: file: /usr/local/lib/python2.7/xmlrpclib.py line: 557 关闭sonar6.2时,报如下错误: error: <class 'socket.error'>, [Errno 113]

error: Failed dependencies: cloog-ppl &gt;= 0.15 is needed by gcc-4.4.7-4.el6.x86_64 cpp = 4.4.7-4.el6

CentOS 6.5下使用rpm -ivh gcc-4.4.7-4.el6.x86_64.rpm命令安装GCC时提示以下错误: warning: gcc-4.4.7-4.el6.x86_64.rpm: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY error: Failed dependencies: cloog-ppl >= 0.15 is needed by gcc-4.4.7-4.el6.x86_64 cpp = 4.4.7-4.

InnoSetup打包时出现Interal error: CallSpawnServer: Unexpected response: $0.错误的解决办法

如果在使用Innosetup打包软件时,如果出现Interal error: CallSpawnServer: Unexpected response: $0.错误, 如下图: 可以查看 Innosetup的脚步文件 xxx.iss文件的OutputBaseFilename字段 OutputBaseFilename字段不能与 AppName字段同名,否则在使用cmd关闭程序时就会出现以上错误

IOS8解决获取位置坐标信息出错(Error Domain=kCLErrorDomain Code=0)(转)

标题:IOS8解决获取位置坐标信息出错(Error Domain=kCLErrorDomain Code=0) 前几天解决了在ios8上无法使用地址位置服务的问题,最近在模拟器上调试发现获取位置坐标信息的时候会报错,错误信息: didFailWithError: Error Domain=kCLErrorDomain Code=0 “The operation couldn’t be completed. (kCLErrorDomain error 0.)”. 出错原因是xcode里面的proj

Check failed: error == cudaSuccess (10 vs. 0) invalid device ordinal

ubuntu14.04 caffe 运行别人的程序,报错Check failed: error == cudaSuccess (10 vs. 0)  invalid device ordinal.根据网上的说法,GPU内存不够,可是batch大小改为1了还是不行.问了博士师兄才发现,在该行上面有一行,写着using GPUs 1.而我只有一个GPU,如图2,我把solver_48.prototxt中最后一行的device_id改为0,接着运行,见图1,这个错误就没有啦--当然我的又报了别的错..