Extract and mount clonezilla backup Installation 1pacman -S partclone Extract 1 2 3 4 5 6# Create an empty image file cd /destinationBackup touch my-backup.img # Extract the clonezilla files into the image file cat sda1.ext4-ptcl-img.gz.a* | gzip -d -c | partclone.restore --restore_raw_file -C -s - -O my-backup.img Mount 1mount -o loop -t ext4 /destinationBackup/my-backup.img /mnt