Falha ao instalar o Ubuntu touch no Nexus 10, o que posso fazer agora?

3

Eu segui as instruções sobre como instalar o touch ubuntu no meu nexus 10. Tudo parecia estar indo muito bem até o final.

Pushing /home/joshua/Downloads/phablet-flash/135/raring-preinstalled-phablet-armhf.zip to /sdcard/autodeploy.zip 
error: device not found 
Error while executing adb push /home/joshua/Downloads/phablet-flash/135/raring-preinstalled-phablet-armhf.zip /sdcard/autodeploy.zip 
Make sure the device is connected and viewable by running 'adb devices' 
Ensure you have a root device, one which running 'adb root' does not return an error 

Eu não torci meu nexo 10 porque as instruções não diziam para ... Provavelmente o bom senso que eu conheço, mas eu olhei para ele. agora eu só recebo esta mensagem. Agora ele mostrará apenas o google quando inicializar e depois desliga e eu só recebo um sinal de bateria. Eu sou capaz de iniciar a recuperação de um relógio, mas é sobre isso.

Qualquer ajuda? Existe alguma maneira que eu possa sideload? há algo que eu possa fazer?

    
por user161571 25.05.2013 / 02:27

1 resposta

2

CONFUSÃO POSSÍVEL:

O comando adb root simplesmente recarrega o daemon adb (como root) no seu desktop PC . Isso lhe dá maior privilégio (se necessário) para acessar e controlar o dispositivo conectado.

Isso não é 'root' para o dispositivo. Isso NÃO afeta o dispositivo (ou seu firmware).

Quais etapas você concluiu?

O procedimento de instalação (manual) tem apenas 5 etapas: ( por exemplo, para Nexus 7 )

Arquivos de imagem de: link

ATUALIZAÇÃO: (2013-jun-14)

Current daily is now Saucy (13.10) (early BETA)

To stay with Raring (13.04), use: http://cdimage.ubuntu.com/ubuntu-touch-preview/raring/monthly-06/

/ UPDATE

[1.] Check device is attached

adb devices

* daemon not running. starting it now on port 5### *
* daemon started successfully *
List of devices attached 
##############        device

[2.] Load machine-specific image (eg. for Nexus 7/grouper)

adb push ~/images/raring-preinstalled-armel+grouper.zip /sdcard/autodeploy.zip

#### KB/s (######### bytes in ##.###s)

[3.] Reboot to Recovery Mode (and run autodeploy.zip)

adb reboot recovery

[3A.] (OPTIONAL) Repeat previous step: Reboot to Recovery Mode

Note: As the device may not be stable (until after step 4), this places device in a known state while waiting the 2-4 minutes for load to complete.

adb reboot recovery

[4.] Load ubuntu-touch (phablet) image (for ANY supported device)

adb push ~/images/raring-preinstalled-phablet-armhf.zip /sdcard/autodeploy.zip

#### KB/s (######### bytes in ##.###s)

[5.] Reboot to Recovery Mode (and run autodeploy.zip)

adb reboot recovery

The device should reboot to Ubuntu Touch (phablet) GUI

    
por david6 26.05.2013 / 05:38