It's a little disappointing but as it seem when they created clonezilla they didn't care for RAID.
Well in the end I did my copy job with partimage.
My new RAID0 is at \dev\dm-0
The source disk with an GPT is \dev\sdd
I booted into the clonezilla and hit alt+F2 to get a command line:
cd \dev
partimage.dd -b -ssdd -Odm-0
if time doesn't matter keep it running.
... or if you don't like to wait that long.
hit Ctrl+c. To copy just the used data is much faster.
enter
gdisk \dev\dm-0
and 'w' to write new fixed GPT (and it's backup)
partprobe
will make the kernel to read the new partition layout and as well spot any partition problems.
blk -f
to get an overview about what partitions are there.
Now I manually create my long commands line batch :
cd \dev
partimage.ext4 -b -sssd1 -Omapper/isw_...RAID1 ; partimage.ntfs -b -sssd2 -Omapper/isw_...RAID2 ; partimage.fat32 -b -sssd4 -Omapper/isw_...RAID4
(This job 'normally' OCS-Clonezilla would do. )
I chain the commands together with ;
However if you choose to make use an editor to do (nano, mcedit, vim...) so you don't need the ';' . Just put each command to a new line.
Stay away from /dev/dm-X since it's not that clear what partition they stand for. Instead use /dev/mapper/...
Okay that's it.
I recommend to boot Clonezilla with a resolution of 1024x768. That'll give you a better overview on the screen. You've no windows however Alt+F2, Alt+F3 ... will change the tty and can be useful to do some task in another tty and then switch back and forth.