Destination doesn't have enough free space
Brought to you by:
thomas_tsai
when i call (see below) on an existing clonezilla file i get the message Destination doesn't have enough free space on an XFS partition which dows not use space for unused space from the image fiel (partition). therefor i use -C option. but it seems to me that this option does not work. if i use the same commands on an XFS drive with enough free space, it works.
IMGPATH=./img
MNTPATH=./mnt
TYPE=ext4
cat $DRIVE-ptcl-img.gz.* | gzip -d -c | sudo partclone.$TYPE -C -r -W -L $IMGPATH/partclone.log -s - -O $IMGPATH/$DRIVE.img --restore_raw_file
The option "-C" is to check the raw device size, while what you wanted to do was to restore the image to a special file. I belive that's why the opiton "-C" did not work for you.
Steven