Is it possible de restore a clone ? #158
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hi,
I cloned the SSD from an RPI3B+ to an SD card with rpi-clone.
My question is, is it possible to restore this SD card to a new SSD if I first replace the damaged SSD with a new one ? If yes, how to do it ?
Thank you in advance for your help.
Kind regards
The rpi-clone Example Runs answer your question:
If you boot from a SD and want to clone to USB/SSD:
#Indentify the target disk with:
sudo fdisk -l
For example, it will be sda (/dev/sda). Then:
rpi-clone sda
Now, remove de SD card and boot from SSD.
If you booting from the USB/SSD and want to clone to an SD Card:
#Indentify the target disk with:
sudo fdisk -l
For example, it will be mmcblk0. Then:
rpi-clone mmcblk0
Thanks for your help.
👍