# nc -l 12345 | dd of=/dev/xxxxxx/web
dd: ‘/dev/SubHost6/web’ に書き込み中です: 入力/出力エラーです
write: Broken pipe
1771554+12329 レコード入力
1777472+0 レコード出力
910065664 bytes (910 MB, 868 MiB) copied, 93.1886 s, 9.8 MB/s
# nc -l 12345 | dd of=/dev/xxxxxx/web
dd: ‘/dev/SubHost6/web’ に書き込み中です: 入力/出力エラーです
write: Broken pipe
1771298+12620 レコード入力
1777472+0 レコード出力
910065664 bytes (910 MB, 868 MiB) copied, 96.9826 s, 9.4 MB/s
これは2回だが何度やっても途中でエラーになり書き込めない。
色々調べたが中々原因が判らなかったが、問題はこのデバイス /dev/xxxxxx/webに問題があった。
# xfs_repair /dev/xxxxxx/web
Phase 1 - find and verify superblock...
bad primary superblock - bad magic number !!!
attempting to find secondary superblock...
.found candidate secondary superblock...
unable to verify superblock, continuing...
.found candidate secondary superblock...
unable to verify superblock, continuing...
.found candidate secondary superblock...
unable to verify superblock, continuing...
..................................................................................................................................................................................................................................................................................................
なので、このlvmの領域を再度 xfs でformat する
# mkfs.xfs /dev/xxxxxx/web
で再度 dd でコピーしたら問題なく出来た。