无法在 Nexus 10 上安装 Ubuntu touch,我现在该怎么办?

无法在 Nexus 10 上安装 Ubuntu touch,我现在该怎么办?

我按照说明在 nexus 10 上安装 touch ubuntu。一切似乎都进展顺利,直到最后。

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 

我没有 root 我的 nexus 10,因为说明书上没有说……我知道这大概是常识,但我忽略了。现在我只收到这条消息。现在它只会在启动时显示 google,然后关闭,我只收到电池标志。我可以启动到 clockwork recovery,但仅此而已。

有什么帮助吗?我可以通过什么方式进行侧载吗?我能做些什么吗?

答案1

可能造成的混淆:

命令adb root只需重新加载亚行守护进程(以 root 身份)桌上型电脑。这会赋予您更大的权限(如果需要)来访问和控制所连接的设备。

这不是设备的“根”。这不会影响设备(或其固件)。


您完成了哪些步骤?

(手动) 安装过程只有 5 个步骤: (例如为了Nexus 7

图片文件来自:http://cdimage.ubuntu.com/ubuntu-touch-preview/daily-preinstalled/current/

更新:(2013 年 6 月 14 日)

当前的日常的就是现在俏皮(13.10)(早期测试版)

要使用 Raring (13.04),请使用: http://cdimage.ubuntu.com/ubuntu-touch-preview/raring/monthly-06/

/更新

[1.] 检查设备是否已连接

adb devices

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

[2.] 加载特定于机器的图像(例如Nexus 7/石斑鱼)

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

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

[3.] 重启至恢复模式(并运行自动部署.zip

adb reboot recovery

[3A.](选修的) 重复上一步:重新启动恢复模式

笔记: 由于设备可能不稳定(直到步骤 4 之后),这会使设备处于已知状态,同时等待 2-4 分钟以完成加载。

adb reboot recovery

[4.] 加载 ubuntu-touch(平板手机)图像(适用于任何支持的设备)

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

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

[5.] 重启至恢复模式(并运行自动部署.zip

adb reboot recovery

设备应重新启动Ubuntu Touch(平板手机)GUI

相关内容