简体   繁体   English

Android 4.3 ADB推/拉

[英]Android 4.3 ADB push/pull

Today i bought the Samsung Galaxy Note 3 which came with Android 4.3. 今天我买了Android 4.3附带的三星Galaxy Note 3。 Since it's so new, i couldn't find a way to root my device, so instead i tried with the adb connection ... i failed. 由于它是如此新,我无法找到一种方法来root我的设备,所以我尝试使用adb连接......我失败了。

So, i used this 所以,我用过这个

D:\android\adt-bundle-windows-x86-20130219\sdk\platform-tools>adb push g:\save15.dat /data/data/com.creativemobile/dragracing/files/

but i got this 但我得到了这个

failed to copy 'g:\save15.dat' to '/data/data/com.creativemobile/dragracing/files/': No such file or directory

so, is there a way to copy my file to my device? 那么,有没有办法将我的文件复制到我的设备?

It should be 它应该是

adb push g:\\save15.dat /data/data/com.creativemobile.dragracing/files/ adb push g:\\ save15.dat /data/data/com.creativemobile.dragracing/files/

If you're allowed to push files/data there it will work. 如果您被允许在那里推送文件/数据,它将起作用。

you can use the adb restore command for android 4.xx but you need to have an adb backup before. 你可以使用android 4.xx的adb restore命令,但你需要先进行adb备份。 but i think adb shell backup command does not work for android 2.xx 但我认为adb shell backup命令对android 2.xx不起作用

maybe this will work for you http://dragracingforum.net/viewtopic.php?f=262&t=13477 if not then you can ask the the post author i think he knows how to. 也许这对你有用http://dragracingforum.net/viewtopic.php?f=262&t=13477如果没有那么你可以问帖子作者我觉得他知道怎么做。

There's a bug in 4.3 that prevents this from working on a real, non-rooted device. 4.3中存在一个错误,可以防止它在真正的非root设备上运行。 https://code.google.com/p/android/issues/detail?id=58373 https://code.google.com/p/android/issues/detail?id=58373

Yes, the following works on my limited edition nuclearsx-sp5 type these commands 是的,以下适用于我的限量版nuclearsx-sp5类型这些命令

adb reboot
adb remount
adb root

This is tested to work only on "improperly" (YES! I mean it) rooted devices which are known to have production builds. 这被测试仅适用于“不正确”(是!我的意思是)已知具有生产构建的已植根设备。 But it works on my samsung galaxy wonder (non-rooted)flawlessly. 但它完美地适用于我的三星银河奇迹(非根)。

Good luck! 祝好运!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM