Ok, encrypted drives will do this but don’t panic. Most encrypted drives can’t be copied with clonezilla and have to do it the slow binary copy with Linux.
first make a boot usb with ubuntu 24.04LTS
shut down the computer, unplug the 2TB, then turn the computer back on, then shut it down again
then insert the drive, the ubuntu USB, turn it on, go to bios, you should see the drive, go to your boot override and boot the usb or exit out of bios and boot the Ubuntu usb, exit out of setup which will get you a desktop then open a terminal window (ctrl+alt+t)
find your drive by using the lsblk command. the nvme drive should be there as it will be labeled nvme0n2 or something like that.
lsbkl -a
now we have to set a root password for the live disk on 24.04Lts
passwd root
Now drop into a terminal TTY (ctrl +F2)
login as root and the password you just made
then after that, we binary clear the drive:
dd if=/dev/zero of=/dev/nvme0n2 bs=10M status=progress
several hours later, we continue
After that, we can copy the drive.
find the 1TB drive
lsblk -a
Then copy it. I’ll use sda for an example which is the first SATA drive
dd if=/dev/sda of=/dev/nvme0n2 bs=1M status=progress
This takes forever, but it will be copied.