I have extended partition that contains three another partition. All I want to do is make copied image of that 'extended' partition. I followed steps shown in here, and ran this
sudo dd if=/dev/sdc3 conv=sync,noerror bs=64K | gzip -c > TOSHIBA_ExtPart.img.gz
then I got the error : No such device or address.
*I want to make perfect copy of partition, because there are deleted files I want to recover in the future in partition so imaged file should contain them.
Is there any mistake I made? Or is there any better method to do it?
(OS : Ubuntu 16.04 LTS)