Idéia # 1
Qual foi o comando que você usou para criar a imagem com xfs_copy
? Existem orientações para xfs_copy
que ele deveria ter sido usado em um sistema de arquivos desmontado:
unmounted filesystem only
xfs_copy should only be used to copy unmounted filesystems, read-only mounted filesystems, or frozen filesystems (see xfs_freeze(8)). Otherwise, the generated filesystem(s) would be inconsistent or corruption
Idéia # 2
Dependendo da sua distro + versão do XFS, existe este bug + patch intitulado: Bug 1104956 - xfs_copy fará um corrompido segmentar quando o setor de origem estiver acima de 512 .
Description of problem: 1. mkfs a xfs filesystem on some device to make its sector over 512 and put some file in it mkfs.xfs -f -s size=4096 $SCRATCH_DEV 2. xfs_copy $SCRATCH_DEV to $target $target is corrupted, and can't be mounted. The following patch fix it.