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