Read the statement by Michael Teeuw here.
Clone the SD card?
-
hi
yes you can with usb image
link in french
https://www.clubic.com/telecharger-fiche366602-imageusb.html -
hi, or use SD copy program in your rpi desktop
-
If you can get on a linux machine, this is quick and easy with dd.
First, plug in your current sdcard and find the path using
sudo fdisk -l
It’ll be a path starting with /dev/, usually /dev/sdX or /dev/mmcblk#. Get the whole drive, not the partition (for a device at /dev/sda, the partitions will be /dev/sda1, sda2, etc).
Next, copy the current image to a file, using the path you just found:
sudo dd=$YOUR_NEW_PATH of=$FileName.img bs=1M
Once it’s finished (it’ll take a while), remove your card and insert the new one, and reverse the process. Find the path to the new card (it may have changed from the original) and use the image file you just created as the input:
sudo dd if=$FileName.img of=$YOUR_PATH bs=1M
And you’re done.
-
-
@drewski3420 but that leaves the new space unused
-
- sudo raspi-config
- Advanced Options
- Expand Filesystem
- reboot
that might help :-)
-
@blaukon there is a command to do it too… sinced he is right there doing dd
-
@sdetweil Can you share the command?
-
@drewski3420 read the content on the link above