Copy To SD Card, All I get Is Red Light & Black Screen . . . .
#2
To flash the SD card, you need to replace the whole partition scheme and any file systems on the card with what's in the image. I.e. it's not enough to copy the image into an existing filesystem on the card; you need to overwrite whatever filesystem and partition setup that's on the card (which also means it doesn't matter how the card is formatted to begin with).

I prefer to use 'dd' to write disk images. Make absolutely sure you have the correct device name for your SD card; using the wrong one might overwrite your hard drive! I usually run 'sudo journalctl -f' and watch the output while inserting my card to see the device name. The  output might look something like this:

mmc0: new high speed SDHC card at address 0007
mmcblk0: mmc0:0007 SL16G 14.5 GB
mmcblk0: p1 p2

This means that the card (block) device is called mmcblk0 (and it has two existing partitions: p1 and p2). Devices are accessed under /dev in the file system, so the complete path in this case is '/dev/mmcblk0' (which I will use in the example below).

The image is compressed with xz. Write it like this:

xzcat ubuntu-touch-pinephone.img.xz | sudo dd of=/dev/mmcblk0 bs=1M status=progress

This uncompresses the xz image and pipes it to dd that does the actual writing to the card.


Messages In This Thread
RE: Copy To SD Card, All I get Is Red Light & Black Screen . . . . - by bitnick - 09-03-2020, 06:43 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  file manager vs. SD card laserpyramid 6 5,740 10-18-2021, 03:10 AM
Last Post: acrux
  Screen-off = dead phone okgo 11 9,741 09-27-2021, 07:53 PM
Last Post: jtn0514
  PinePhone UBPorts Edition stuck on PINE64 logo screen Giovanni Iannotti 4 4,924 09-01-2021, 01:20 PM
Last Post: Giovanni Iannotti
Sad Help! - Screen blank after update. Zweitaktmotor 4 4,494 07-26-2021, 05:17 PM
Last Post: Zweitaktmotor
  noticable Screen flicker KNERD 0 2,048 01-13-2021, 09:00 PM
Last Post: KNERD
  Automount SD card MasterGreenbolt 7 10,695 08-16-2020, 05:40 AM
Last Post: FOSSagent0
  Is bluetooth lag for A/V playback due to SD card? Cree 1 2,756 08-02-2020, 06:30 PM
Last Post: hiimtye
  Black screen after pine64 logo Putergenius 2 3,466 07-21-2020, 05:15 PM
Last Post: natasha
  [Possible solution] Stuck on blank screen kugiigi 4 5,811 06-29-2020, 02:51 PM
Last Post: rocket2nfinity
  Booting from SD card bingo600 1 2,746 06-20-2020, 02:33 AM
Last Post: bingo600

Forum Jump:


Users browsing this thread: 1 Guest(s)