1.isoinfo -d -i /dev/cdrom | grep -i -E 'block size|volume size'
Logical block size is: 2048
Volume size is: 327867
2.dd if=/dev/cdrom of=test.iso bs=<block size from above> count=<volume size from above>
3. check the process
killall -USR1 dd
With the of watch, this call can also be executed every 2 seconds:
watch -n 2 killall -USR1 dd
Logical block size is: 2048
Volume size is: 327867
2.dd if=/dev/cdrom of=test.iso bs=<block size from above> count=<volume size from above>
3. check the process
killall -USR1 dd
With the of watch, this call can also be executed every 2 seconds:
watch -n 2 killall -USR1 dd
本文介绍了如何使用isoinfo获取CD-ROM的基本信息,包括逻辑块大小和卷大小,并利用dd命令将CD-ROM内容复制到ISO文件中。此外还提供了一个实用技巧,通过USR1信号来监控dd进程的状态。

4万+

被折叠的 条评论
为什么被折叠?



