Copy To SD Card, All I get Is Red Light & Black Screen . . . .
#1
Hello,
Am I missing something here ? I've following the instruction on how to get ubuntu touch on a SD and I always end up with that little red light in the top left of the phone and a black / blank screen. i have the SD Card formatted to FAT32. I'm using Mint 20. I've used the built in writer ( Not sure what the disk imager / writer is called on Mint ) I've simply take the image and drop it into the SD Card and the outcome is still the same.
I assume its me missing a step or something, but don't know what it could be. The SD Card works, I previously used it to put jumpstart on it when I got locked out of my phone. I'm using the PMOS release.

Image used : https://ci.ubports.com/job/rootfs/job/ro...sfulBuild/
Instructions followed : https://gitlab.com/ubports/community-ports/pinephone

I am using a San Disk micro sd 32GB, it's compatible with the the PinePhone as jumpstart worked and copied to it. Sorry trying to list everything I can think of in one post.I think that's it. Any help or suggestions are greatly appreciated.
Thanks !!
#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.
#3
(09-03-2020, 06:15 PM)NobodyNew1 Wrote: Hello,
Am I missing something here ? I've following the instruction on how to get ubuntu touch on a SD and I always end up with that little red light in the top left of the phone and a black / blank screen. i have the SD Card formatted to FAT32. I'm using Mint 20. I've used the built in writer ( Not sure what the disk imager / writer is called on Mint ) I've simply take the image and drop it into the SD Card and the outcome is still the same.
I assume its me missing a step or something, but don't know what it could be. The SD Card works, I previously used it to put jumpstart on it when I got locked out of my phone. I'm using the PMOS release.

Image used : https://ci.ubports.com/job/rootfs/job/ro...sfulBuild/
Instructions followed : https://gitlab.com/ubports/community-ports/pinephone

I am using a San Disk micro sd 32GB, it's compatible with the the PinePhone as jumpstart worked and copied to it. Sorry trying to list everything I can think of in one post.I think that's it. Any help or suggestions are greatly appreciated.
Thanks !!

Have you tried 'Balena Etcher'  I have had 98% success rate, Using Mint Debian Edition.
   ( I would suggest formatting to ext4 if pre-formating )
#4
Again, pre-formatting is pointless since the partition table will be replaced when the image is written anyway.
#5
(09-03-2020, 07:33 PM)bcnaz Wrote:
(09-03-2020, 06:15 PM)NobodyNew1 Wrote: Hello,
Am I missing something here ? I've following the instruction on how to get ubuntu touch on a SD and I always end up with that little red light in the top left of the phone and a black / blank screen. i have the SD Card formatted to FAT32. I'm using Mint 20. I've used the built in writer ( Not sure what the disk imager / writer is called on Mint ) I've simply take the image and drop it into the SD Card and the outcome is still the same.
I assume its me missing a step or something, but don't know what it could be. The SD Card works, I previously used it to put jumpstart on it when I got locked out of my phone. I'm using the PMOS release.

Image used : https://ci.ubports.com/job/rootfs/job/ro...sfulBuild/
Instructions followed : https://gitlab.com/ubports/community-ports/pinephone

I am using a San Disk micro sd 32GB, it's compatible with the the PinePhone as jumpstart worked and copied to it. Sorry trying to list everything I can think of in one post.I think that's it. Any help or suggestions are greatly appreciated.
Thanks !!

Have you tried 'Balena Etcher'  I have had 98% success rate, Using Mint Debian Edition.
   ( I would suggest formatting to ext4 if pre-formating )
I've tried Etcher as well. This is what I just came a cross and didn't think to put it in my post, but I guess this is the issue or could be the issue ( I have 3GB PMOS / convergence which is 3GB not 2GB ) :

A newly installed OS does not boot on 3GB PinePhone
U-Boot did not have support for A64 chips with 3GB RAM, and un-patched versions will fail to boot on 3GB (Convergence Package) PinePhones.
The patch/commit required is titled: "sunxi: support asymmetric dual rank DRAM on A64/R40"
As of 3rd September 2020, these distributions are known to work: I'm going to put Mobian on a SD really quickly and see the out come, To be continued . . . . . .

(09-03-2020, 06:43 PM)bitnick Wrote: 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.

I'm going to follow this right now and will post the outcome. I also came across this, which seeing I have the 3GB phone that could simply be the issue. I never thought to put that in my original post. I'll try UbuntuT and Mobian both, and if Mobian works then its this 3GB.
Thanks for your help and writing out those commands for me.

A newly installed OS does not boot on 3GB PinePhone
U-Boot did not have support for A64 chips with 3GB RAM, and un-patched versions will fail to boot on 3GB (Convergence Package) PinePhones.
The patch/commit required is titled: "sunxi: support asymmetric dual rank DRAM on A64/R40"
As of 3rd September 2020, these distributions are known to work:
Ubuntu T. Failed, still the same red light and blank screen.
Mobian and Arch work.

So, my noob conclusion, must be what was written above as this PMOS version with convergence has 3GB RAM oppose to other releases having only 2GB, bc I can put JumpDrive on my SD Card and it works. I was also able to use JumpDrive and reinstall PMOS on the phone after getting locked out due to a encryption passphrase issue. Looks like I'm locked into PMOS until this 3GB issue is ironed out with the other OS's. Which isn't a bad thing, it just would have been nice to have another OS on a SD and be able to learn and tinker with more than just 1 OS.
#6
September 03 Mobian nightly build,  Booted first try on my new PMOS Convergence Pkg phone (3gb ram)
Simply download and then flash with Balena Etcher,  I also use 'resize' from 'Disks' to use the whole 32gb SD card. (after flashing the card)
Plug it into the new phone and it starts right up.
There is a start page after you fire it up, but that sometimes is several minutes after you see the desktop screen.
It seems to run a bit faster after a few reboots.

Note:  In settings, be sure to go to 'Regions & Language' and set all the settings there. (you will have to manually restart after doing those settings)

Good Luck

I have 2 of the Convergence Pkg (3gb ram) phones, currently I have Mobian (September 03 nightly build) on one and the factory PMOS on the other.
 Both are doing OK, I only have a sim card in the PMOS at the moment, and data is working on that one.

-----------------------------------------
Update September 06 :
 One PMOS 3g ram is using TracFone (AT&T) sim card, has talk, text, and data w/hot spot.
second PMOS 3g ram is using Simple Mobile (T-Mobile) sim card, talk, text, data w/hot spot.
very happy testing.
      LINUX = CHOICES
         **BCnAZ**
               Idea
   Donate to $upport
your favorite OS Team
#7
(09-04-2020, 09:37 AM)bcnaz Wrote: September 03 Mobian nightly build,  Booted first try on my new PMOS Convergence Pkg phone (3gb ram)
Simply download and then flash with Balena Etcher,  I also use 'resize' from 'Disks' to use the whole 32gb SD card. (after flashing the card)
Plug it into the new phone and it starts right up.
There is a start page after you fire it up, but that sometimes is several minutes after you see the desktop screen.
It seems to run a bit faster after a few reboots.

Note:  In settings, be sure to go to 'Regions & Language' and set all the settings there. (you will have to manually restart after doing those settings)

Good Luck

I have 2 of the Convergence Pkg (3gb ram) phones, currently I have Mobian (September 03 nightly build) on one and the factory PMOS on the other.
 Both are doing OK, I only have a sim card in the PMOS at the moment, and data is working on that one.
I'll edit above comment, Mobian is a GO !!!
Arch is a GO !!
PureOS is a NO !!


I'm SO SO hoping UBports gets this #GB thing worked out. That's what I wanted to see Shy
#8
(09-04-2020, 10:45 AM)NobodyNew1 Wrote:
(09-04-2020, 09:37 AM)bcnaz Wrote: September 03 Mobian nightly build,  Booted first try on my new PMOS Convergence Pkg phone (3gb ram)
Simply download and then flash with Balena Etcher,  I also use 'resize' from 'Disks' to use the whole 32gb SD card. (after flashing the card)
Plug it into the new phone and it starts right up.
There is a start page after you fire it up, but that sometimes is several minutes after you see the desktop screen.
It seems to run a bit faster after a few reboots.

Note:  In settings, be sure to go to 'Regions & Language' and set all the settings there. (you will have to manually restart after doing those settings)

Good Luck

I have 2 of the Convergence Pkg (3gb ram) phones, currently I have Mobian (September 03 nightly build) on one and the factory PMOS on the other.
 Both are doing OK, I only have a sim card in the PMOS at the moment, and data is working on that one.
I'll edit above comment, Mobian is a GO !!!
Arch is a GO !!
PureOS is a NO !!


I'm SO SO hoping UBports gets this #GB thing worked out. That's what I wanted to see Shy
Thank you for confirming this!  I didn't even get the red light.  Manjaro w. Plasma, at least for now.
#9
The September 6 Build of UB Ports (#78) boots with 3GB ram model!

Camera updates image about 3 seconds per frame, so almost unusably slow. Also flips main camera image. Also doesn't focus well. And selfie cam doesn't work.

Seems to forget my wifi setup on reboot.

Full British boatload of apps in the store -- at least compared to PMOS.

Pure Maps!

There's python3 pre-installed and ready to go in the terminal. Code away.
#10
(09-04-2020, 10:45 AM)NobodyNew1 Wrote:
(09-04-2020, 09:37 AM)bcnaz Wrote: September 03 Mobian nightly build,  Booted first try on my new PMOS Convergence Pkg phone (3gb ram)
Simply download and then flash with Balena Etcher,  I also use 'resize' from 'Disks' to use the whole 32gb SD card. (after flashing the card)
Plug it into the new phone and it starts right up.
There is a start page after you fire it up, but that sometimes is several minutes after you see the desktop screen.
It seems to run a bit faster after a few reboots.

Note:  In settings, be sure to go to 'Regions & Language' and set all the settings there. (you will have to manually restart after doing those settings)

Good Luck

I have 2 of the Convergence Pkg (3gb ram) phones, currently I have Mobian (September 03 nightly build) on one and the factory PMOS on the other.
 Both are doing OK, I only have a sim card in the PMOS at the moment, and data is working on that one.
I'll edit above comment, Mobian is a GO !!!
Arch is a GO !!
PureOS is a NO !!


I'm SO SO hoping UBports gets this #GB thing worked out. That's what I wanted to see Shy
I've been playing around with Mobian more than anything, don't know why, it's just what I find myself going back to to play around with. I'm not getting clear communication so I've yet to try and use the phone for a day on its own. People say they can hear me but its not clear. It's a shame bc, I don't use apps. I'd miss spotify but that's it. I just need it to talk and txt, and get VM's that's all I ask !!!


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

Forum Jump:


Users browsing this thread: 1 Guest(s)