12-31-2021, 11:19 AM
(12-31-2021, 11:14 AM)Zebulon Walton Wrote: I've never used Balena Etcher so don't know if there's something there that might be causing a problem. I use the old "dd" program that Linux inherited from ancient Unix systems. (My circa 1981 Unix manual can largely serve as a guide for dd and other utililities in modern Linux!) So what you might want to do is boot up on your Ubuntu flash drive and try using dd to flash your SD card instead of Etcher.Hello Zebulon,
You need first to determine positively what the device node (/dev/sdX) is for your SD card. You can do this a couple of ways. I usually just monitor the syslog file as previously documented to pick up the device node. You could also use the Gnome Disks or GParted software to identify it. You want to be absolutely sure because "dd" has no safety net, it will do exactly what you tell it to do whether that is what you actually want or not. (It will happily over-write your system disk if you give it the wrong device!) If using Gnome Disks, this is the kind of thing you'll see to identify your SD card, which in my case is a 16MB card:
So after determining the SD card device node enter the following command, substituting the actual image filename for filename.img and the actual device node for /dev/sdX:
sudo dd if=filename.img of=/dev/sdX bs=1M status=progress conv=fsync
Due to the simplicity of dd's operation this will create a byte-for-byte copy of the image file on the SD card without question as long as there are no read or write errors.
I have successfully etched Mobian onto my SD card! It boots! But not from the EEMC. I have Mobian on my pinephone I thank you sincerely for all your help. THANK YOU!
My one issue is what to do about the EEMC. I have noticed a reset button on my phone. What is it and how does it work?
Chris