Is the same DD command appropriate for writing EMMC and SD cards
#1
I have written several SD cards and they all work from software on other machines. I have written images from SD card to emmc and had it work. Now I want to back up my emmc to an SD card and be able to boot from it.  Can I have DD read from the emmc device and write to the SD device and get that?
Ancient teacher (Secondary Field Science/Math), Warrior (USARNG- RET SSG), and IT warrior (30+ years Coder, Network/Systems Administrator, general house geek). 
Pinebook Pro user (Debian, Manjaro)
  Reply
#2
(09-19-2021, 06:30 PM)wpeckham Wrote: I have written several SD cards and they all work from software on other machines. I have written images from SD card to emmc and had it work. Now I want to back up my emmc to an SD card and be able to boot from it.  Can I have DD read from the emmc device and write to the SD device and get that?

UPDATE:  I found a spare SD card, dropped it in the clot, and ran
sudo dd if=/dev/mmcblk2 of=/dev/mmcblk1 bs=1M status=progress
where mmcblk2 is my emmc
and mmcblk1 is my sd card

It took a good while, but finished without error.  Rebooting the PBP brought me into the same session, settings, and everything as if I had booted to emmd without the card, except that the root mount point was on mmcblk1 now.

This is perfect.  As easy as that I have a card that is a clone of my usual boot to use as a backup card in case of issues, and from which to rewrite the emmc at need. 
UPDATE: 2021-11-13 I have now had it succeed once, and fail once.  (To the same SD card from the same EMMC!) so the lesson is that it CAN work but you might want another solution available: just in case.
Ancient teacher (Secondary Field Science/Math), Warrior (USARNG- RET SSG), and IT warrior (30+ years Coder, Network/Systems Administrator, general house geek). 
Pinebook Pro user (Debian, Manjaro)
  Reply
#3
dd is blind. The beauty of it is that all it does is copy raw data without interfering with it in any way.

There are some U-Boots, and some operating systems, that will not work like this. That is, they assume the boot device is the one the were installed with.
:wq



[ SRA accepts you ]
  Reply
#4
dd has been nicknamed as DESTROYER OF DISKS. and i have full experience Rolleyes , i have destroyed one harddisk in the past. (good time for remind others, did you do your backups, i did not).

"sudo dd if=/dev/mmcblk2 of=/dev/mmcblk1 bs=1M status=progress"
previous command works if both disks are exactly same size by bytes. bs=1M was good, because default is 512 and it's suboptimal and slow. "fdisk -l" shows some info. also "lsblk" and "blkid". linux does not always guarantee same order for disks, so be very careful.

few things for dd command. users need to know difference between disk, partition and file. one could backup whole disk to as file.

linux booting uses uuid's in most cases, can be shown by "blkid". uuid's are relative, so booting works in other disks or memories. some rare cases absolute paths are used, then booting won't work on other disks or media.
  Reply
#5
You can copy disks of different sizes. But know what you are doing. Copying a smaller disk to a larger one is no problem except that there will be unused space at the end. When copying large to small, only copy the length of the smaller one and know that it will be truncated (likely corrupt).

dd is like a dangerous weapon. It does exactly what you tell it to do, and there is no recourse when you make an error. I'm pretty sure we've all wiped out the root partition at least once. Always, always always read back the command you are about to issue and study it before pressing <RETURN>. This should apply to all Unix commands, but especially dd.
:wq



[ SRA accepts you ]
  Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Help installing Manjaro on eMMC of Pinebook Pro pine4546464 4 1,919 12-13-2023, 07:22 PM
Last Post: trillobite
  Manjaro 20.04 not loading from SD (with Manjaro on eMMC) zaius 1 292 12-07-2023, 03:11 PM
Last Post: wdt
  [Manjaro] u-boot won't boot from eMMC with (unbootable) SD card present zackw 1 1,853 08-21-2023, 09:08 PM
Last Post: vanessadonald
  Blank screen after Armbian 20.04 install to emmc? psychoacoustic 3 3,344 04-01-2023, 03:22 PM
Last Post: TRS-80
  Fix for Armbian not booting on PBP from eMMC agreenbhm 7 3,655 04-01-2023, 02:58 PM
Last Post: TRS-80
  My installation guide starting from messed up eMMC Besouro 0 814 12-19-2022, 01:01 PM
Last Post: Besouro
  newer ""emmc-installer" images (manjaro xfce) magistral 1 1,037 10-10-2022, 06:22 AM
Last Post: maxjrh
  6/22 run of PBPs - is reimaging eMMC with new OS possible still? elitegamercody 29 10,827 10-04-2022, 07:55 PM
Last Post: wdt
  Debian emmc installer db579 6 2,798 08-23-2022, 06:13 AM
Last Post: db579
  what is the magic dd incantation to copy the system from the sd card to the emmc? geokon 18 8,785 08-18-2022, 11:26 PM
Last Post: calinb

Forum Jump:


Users browsing this thread: 1 Guest(s)