For those in a similar situation, I only found my Finnix live iso which is basically booting to a root shell and very lean.This method should work, but i can't promise anything. Boot a live linux cd/dvd (void/ubuntu/adelie/etc) and use dd to create an .img of your entire drive (/dev/sda). This will make an exact copy, bootloader, partition layout, etc. Don't worry about partitions unless you have other OS's on the same drive. If you do then this process gets a bit more involved and is above my knowledge (unless you want those OS's on the second ibook as well). Copy the newly created .img to a usb stick. Boot the other ibook using a live linux cd/dvd and dd the usb.img to it's internal drive. If it is successful and boots use gparted to resize your / partition if your cloned ibook has a bigger HD to reclaim unused space.
Cheers
blkid to see all partitions
in my case
/dev/sda is the disk containing all Void partitions
/dev/sdb3 was a 128Gb ext4 partition on a USB stick which will hold the image
mount -t ext4 -rw /dev/sdb3 /mnt
Luckily Finnix has pv installed in it's live ISO so I can use it to follow the progress of dd.
27 Gb drive seems to take approx 25-30 minutes to clone to an image file.
Use DD with caution , it will wipe everything without warning !!!
pv -tpreb /dev/sda | dd of=/mnt/void.img bs=1M conv=noerror
To restore on the new iBook
/dev/sda is the disk on the new iBook
/dev/sdb3 was a 128Gb ext4 partition on a USB stick which holds the cloned image
mount -t ext4 -rw /dev/sdb3 /mnt
Use DD with caution , it will wipe everything without warning !!!
pv -tpreb /mnt/void.img| dd of=/dev/sda bs=1M conv=noerror
And tadaah after 30 minutes of backing up and 30 minutes of restoring the image, I'm now booted on my other iBook into Void.
Last edited: