当前位置: 技术问答>linux和unix
dd命令为何导致内核crash dump!
来源: 互联网 发布时间:2016-05-02
本文导语: linux内核:2.4.9,执行以下命令: dd if=/dev/scd0 of=/crash_dumps/victorinox1.2-13.iso 后导致系统crash dump,信息如下: ============================ hde: timeout waiting for DMA ide_dmaproc: chipset ...
linux内核:2.4.9,执行以下命令:
dd if=/dev/scd0 of=/crash_dumps/victorinox1.2-13.iso
后导致系统crash dump,信息如下:
============================
hde: timeout waiting for DMA
ide_dmaproc: chipset supported ide_dma_timeout func only: 14
hde: status timeout: status=0xd8 { Busy }
hde: drive not ready for command
scsi : aborting command due to timeout : pid 0, scsi0, channel 0, id 0, lun 0 Read (10) 00 00 00 01 e1 00 00 08 00
hde: ATAPI reset complete
Unable to handle kernel NULL pointer dereference at virtual address 00000818
printing eip:f9bed998
*pde = 24ea8001
============================
已经确定iso文件没有问题,还有可能是什么问题呢?高手帮忙!谢了。
dd if=/dev/scd0 of=/crash_dumps/victorinox1.2-13.iso
后导致系统crash dump,信息如下:
============================
hde: timeout waiting for DMA
ide_dmaproc: chipset supported ide_dma_timeout func only: 14
hde: status timeout: status=0xd8 { Busy }
hde: drive not ready for command
scsi : aborting command due to timeout : pid 0, scsi0, channel 0, id 0, lun 0 Read (10) 00 00 00 01 e1 00 00 08 00
hde: ATAPI reset complete
Unable to handle kernel NULL pointer dereference at virtual address 00000818
printing eip:f9bed998
*pde = 24ea8001
============================
已经确定iso文件没有问题,还有可能是什么问题呢?高手帮忙!谢了。
|
man dd
bs类似扇区一般都是 2^n的值,count是拷贝多少个bs大的数,总字节是count*bs byte
应该不会崩溃,做这种操作之前最好先确认本地空间是否足够
你这个好像是拷贝时没有从磁盘上得到数据,磁盘有问题吗?
bs类似扇区一般都是 2^n的值,count是拷贝多少个bs大的数,总字节是count*bs byte
应该不会崩溃,做这种操作之前最好先确认本地空间是否足够
你这个好像是拷贝时没有从磁盘上得到数据,磁盘有问题吗?