> root# dd bs=512 skip=19087681 seek=19087681 count=1 if=/dev/sdc of=/dev/sdb
> dd: writing `/dev/sdb': Input/output error
> 1+0 records in
> 0+0 records out
> 0 bytes (0 B) copied, 11.3113 s, 0.0 kB/s
You should probably had added oflag=direct.
When you write 512 byte blocks to a block device, it will read a 4096 byte block, update the 512
(
Read more... )