1

I've got a problem when tried to flash my android.

My phone was already unlocked. I performed factory reset and after enable developer mode.

Here code from terminal:

mikalai@mikalai-HP-Compaq-6000-Pro-SFF-PC:~$ sudo ubuntu-device-flash --channel=trusty
2014/03/12 18:36:23 Expecting the device to expose an adb interface...
2014/03/12 18:36:23 Device is |maguro|
2014/03/12 18:36:24 Flashing version 188 from trusty channel and server https://system-image.ubuntu.com to device maguro
2014/03/12 18:36:25 Start pushing /home/mikalai/.cache/ubuntuimages/gpg/image-signing.tar.xz to device
2014/03/12 18:36:25 Start pushing /home/mikalai/.cache/ubuntuimages/gpg/image-master.tar.xz to device
2014/03/12 18:36:25 Start pushing /home/mikalai/.cache/ubuntuimages/trusty/maguro/version-188.tar.xz to device
2014/03/12 18:36:25 Cannot push /home/mikalai/.cache/ubuntuimages/gpg/image-master.tar.xz to device

If anybody know what I did wrong, please advise. Thank you for any help.

Kaz Wolfe
  • 34,680

2 Answers2

0

What device do you have?

(a.) Samsung Galaxy Nexus ('maguro')

(b.) LG Nexus 4 ('mako')


Assuming that does NOT matter ..

You should verify device is 'online', with

adb devices

Then Try:

ubuntu-device-flash --channel=trusty --bootstrap
Danatela
  • 13,384
david6
  • 14,528
  • 5
  • 38
  • 46
0

Im wondering you flash the device in ADB while your device is on android. The best way turn device to bootloader, connect to pc via usb and bootstraping:

ubuntu-device-flash --bootstrap --device=maguro #or other nexus device unless nexus one and nexus s

This you will get live "stable" ubuntu touch for your device. After device have ubuntu touch live. It's easy to change channels:

ubuntu-device-flash --list-channels 
ubuntu-device-flash --device=maguro --channel=saucy-custoized --bootstrap

Note: bootstrap command usable only on booatloader / fastboot mode.

Eric Carvalho
  • 55,453