Enrique Costa - 3 days ago

I’m using clonezilla 5.15.4 distributed by pmagic 2026_03_20
In a Linux computer with SATA drives there are several partitions: sda1, 2, 3 and 4.
On a second computer also on Linux there is a NVMe drive (nvme0n1) with nvme0n1p1 and p2.
I would like to “copy” sda2 to nvme0n1p2.
If I try to use the gui procedure clonezilla tries to create en partitions and fails but using commands I got the desired result:
• On source computer
Saveparts sda2 on the repository using gui
ocs-sr -b -z9 -q2 -j2 saveparts my-image-name sda2
• On target computer I have to use commands:
Convert device sda to nvme0n1
cnvt-ocs-dev -d /home/partimag my-image-name sda nvme0n1
Restorepart with -k option to avoid creating partitions
ocs-sr -b -k -z9 -q2 -r -scr -t restoreparts my-image-name nvme0n1p2
Maybe there is an option to get the same result using the gui. What should I do?