android twrp

TWRP backups can save your bacon if you mess up your Android device. But if you’ve run out of space on your phone–or if you need to wipe its storage–you can copy those backups to your PC with a simple ADB command.

如果您弄乱了Android设备,TWRP备份可以节省您的培根。 但是,如果手机空间不足或需要擦除其存储空间,则可以使用简单的ADB命令将这些备份复制到PC中。

如何将TWRP备份复制到您的PC (How to Copy TWRP Backups to Your PC)

Lots of Android hacking requires wiping your phone, and wiping your phone means losing those backups–which you need to save you if something goes wrong. So, if you anticipate having to wipe your phone (or just want a second copy of those backups for safe keeping), you should copy them to your PC first.

许多Android骇客都需要擦拭手机,而擦拭手机则意味着丢失这些备份-如果出了问题,您需要保存这些备份。 因此,如果您预计必须擦拭手机(或只想要第二份备份以安全保存),则应首先将其复制到PC。

Unfortunately, this isn’t as simple as connecting your phone and dragging the TWRP folder to your PC. In many cases, you may not even be able to see any of the backups in that TWRP folder on your PC, even if you can see them on your phone. So, you’ll need to use the ADB command line tool to copy the files.

不幸的是,这并不像连接手机并将TWRP文件夹拖到PC那样简单。 在许多情况下,即使您可以在手机上看到它们,您甚至可能看不到PC上该TWRP文件夹中的任何备份。 因此,您将需要使用ADB命令行工具来复制文件。

First, ensure that you have the latest version of ADB installed using these instructions. If you do, head to your ADB folder on your PC and Shift+Right Click on an empty space in the window. Choose “Open a Command Prompt Here”.

首先,请确保按照以下说明安装最新版本的ADB。 如果这样做,请转到PC上的ADB文件夹,然后按Shift + Right并单击窗口中的空白区域。 选择“在此处打开命令提示符”。

Next, boot your phone into TWRP’s recovery environment. This usually involves holding down a specific combination of the volume and power buttons. Google instructions for your device if you aren’t sure. If all goes well, you should see the familiar TWRP home screen.

接下来,将手机启动到TWRP的恢复环境中。 这通常涉及按住音量和电源按钮的特定组合。 如果不确定,Google会为您的设备提供说明。 如果一切顺利,您应该会看到熟悉的TWRP主屏幕。

Plug your phone into your PC with a USB cable. In your command prompt, run the following command to ensure your device is connected and recognized by ADB:

用USB电缆将手机插入PC。 在命令提示符中,运行以下命令以确保设备已连接并被ADB识别:

adb devices

You should see the serial number of your device pop up, which indicates it is connected and recognized.

您应该看到设备的序列号弹出,表明它已连接并被识别。

Now, just run this command to copy your TWRP folder to your computer:

现在,只需运行此命令即可将TWRP文件夹复制到计算机:

adb pull /sdcard/TWRP TWRP

This will “pull” your TWRP folder into your ADB folder on your PC. This will take a while, so be patient and wait until you see the command prompt re-appear.

这会将TWRP文件夹“拉”入PC上的ADB文件夹。 这将需要一段时间,因此请耐心等待,直到看到重新出现命令提示符。

When it’s done, you can close the Command Prompt window, disconnect your device, and reboot into Android. You should now feel safe wiping your phone, because all your TWRP backups are stored safely on your computer.

完成后,您可以关闭“命令提示符”窗口,断开设备连接,然后重新启动进入Android。 现在您应该可以安全擦除手机了,因为所有TWRP备份都安全地存储在计算机上。

如何将TWRP备份复制回手机 (How to Copy TWRP Backups Back to Your Phone)

So let’s say you wipe your phone, erasing all your backups, and you want to restore from one of the backups on your PC. It’s very simple: you’ll just use the adb push command to perform the opposite transfer.

因此,假设您擦拭手机,擦除了所有备份,并且想要从PC上的备份之一进行还原。 这很简单:您将只使用adb push命令执行相反的传输。

Boot back into TWRP’s recovery environment on your phone and connect it to your PC with a USB cable. On your PC, head to your ADB folder and Shift+Right Click on an empty space in the window to “Open a Command Prompt Here”.

在手机上重新启动到TWRP的恢复环境,然后使用USB电缆将其连接到PC。 在PC上,转到ADB文件夹,然后按Shift + Right并单击窗口中的空白处,以“在此处打开命令提示符”。

In the command prompt, run:

在命令提示符下,运行:

adb push TWRP /sdcard/TWRP

This will copy the TWRP folder in your ADB folder–the backups we copied in the first section of this guide–back to your phone. Again, this will take a while, so give it time and wait for the command prompt to re-appear before continuing.

这会将TWRP文件夹复制到您的ADB文件夹中(我们在本指南的第一部分中复制的备份)回到您的手机中。 同样,这将需要一段时间,因此请花一些时间并等待命令提示符重新出现,然后再继续。

When it’s finished, tap the Restore button on TWRP’s home screen. You should see your backups have returned to your phone, and you can restore them normally.

完成后,点击TWRP主屏幕上的恢复按钮。 您应该看到备份已返回到手机,并且可以正常还原它们 。

NOTE: If your phone is encrypted with a PIN or password, you may have a problem unlocking your phone after restoring. Check out our guide on how to fix this problem if you do.

注意:如果您的手机已使用PIN或密码进行了加密,则还原后解锁手机可能会遇到问题。 如果需要,请查看我们的指南以解决此问题 。



Copying TWRP backups to your PC is simple, but it’s a godsend if you ever need to wipe your phone. Plus, it never hurts to have your backups in a few places in case something goes wrong.

将TWRP备份复制到您的PC很简单,但是如果您需要擦拭手机,这真是天赐的礼物。 另外,万一出了问题,在几个地方进行备份也无济于事。

翻译自: https://www.howtogeek.com/240655/how-to-copy-twrp-android-backups-to-your-pc-for-safe-keeping/

android twrp

android twrp_如何将TWRP Android备份复制到PC以安全保存相关推荐

  1. android twrp_如何将TWRP恢复环境刷新到Android手机

    android twrp If you want to root, flash a custom ROM, or otherwise dig into the innards of your Andr ...

  2. android twrp_如何使用TWRP备份和还原Android手机

    android twrp When you're rooting, flashing custom ROMs, and otherwise playing with Android's system, ...

  3. 如何使用Aimersoft iMusic for Mac从 Android 手机备份歌曲到 PC/Mac?

    如果计算机上没有副本,最好将 Android 手机中的歌曲备份到计算机上,因为我们永远不知道歌曲何时会因恢复出厂设置或病毒攻击而丢失.Aimersoft iMusic for Mac可以通过 2 个简 ...

  4. Android UI 之WaterFall瀑布流效果 [复制链接]

    2019独角兽企业重金招聘Python工程师标准>>> 所谓瀑布流效果,简单说就是宽度相同但是高度不同的一大堆图片,分成几列,然后像水流一样向下排列,并随着用户的上下滑动自动加载更多 ...

  5. 【Android取证篇】华为云备份支持备份的数据类型-不支持应用分身

    [Android取证篇]华为云备份支持备份的数据类型-不支持应用分身 ​ 在数据分析中,发现华为手机数据被删除过,可以注意手机是否有过云备份数据记录,有一定的机率可恢复数据,不要恢复到原始手机上!!! ...

  6. android ADB shell 命令启动 android程序

    今天用eclipase写了个android程序,主要用到了service.activity.broadcast,在安卓系统手机上调试通过,现在想用ADB shell命令启动这个程序,使达到的效果和在e ...

  7. ubuntu-18.04.4 Android系统源码TP1A(Android 13)下载及编译

    继上一篇博客介绍了VMware Workstation15 配置ubuntu-18.04.4,这篇主要介绍安装后环境搭建,Android源码的下载与编译.小编当前下载的是当前最新的代码,是主干分支代码 ...

  8. android mac 管理工具,Coolmuster Android Assistant for Mac(Android管理工具)

    原标题:Coolmuster Android Assistant for Mac(Android管理工具) 想要在mac上管理你的安卓手机数据吗?试试Coolmuster Android Assist ...

  9. Android:你好,androidX!再见,android.support

    190325 补充:莫名问题的解决 181106 补充:修改未迁移成功的三方库 1.AndroidX简介 点击查看Android文档中对androidx的简介 按照官方文档说明 androidx 是对 ...

最新文章

  1. boost::hana::remove用法的测试程序
  2. matlab怎么将一个矩阵转化为灰度图
  3. W3wp.exe占用CPU及内存资源
  4. akb48_AKB48里历史——六年的终结
  5. Halcon缺陷检测——Blob分析特征
  6. IBM的人工智能“沃森”首次确诊罕见白血病,只用了10分钟!
  7. 空间索引之网格与四叉树
  8. 超详细软件著作权申请——软件设计说明书软件用户说明书
  9. 使用Wps切分单页PDF文件为多页pdf
  10. 【超简单】用python写给女朋友的词云
  11. AMP Roadshow技术分享路演中国专场报名
  12. 小红书流量高峰时间段是什么时候?早上发笔记好还是晚上好
  13. 第三方数据源大型库| CnOpenData全球专利及引用被引用数据
  14. 金融机构业务连续性管理
  15. vlookup使用步骤_vlookup怎么用(vlookup具体使用方法详细步骤)
  16. 数据脱敏(Data Masking)学习
  17. iOS 边学边记 直播SRT、UDT协议详解
  18. RecyclerView的使用(二)——拖曳移动和滑动删除
  19. 春雨医生官宣“莆田系”医院名单 北京24家“上榜”
  20. FFmpeg - Android 视频播放器

热门文章

  1. keras 中的keras.preprocessing、Embedding、GlobalMaxPooling1D()、 TimeDistributed
  2. 软件测试的6大误区,测试小白必看!
  3. python统计excel某一列中文字数
  4. 用C++和二叉树实现简单的摩斯密码翻译器
  5. 51 Proteus仿真NTC热敏电阻温度测量温度控制系统-0016
  6. Java对List中的中文汉字进行排序以及多音字的处理
  7. 成都宁源鑫成:拼多多商家如何做好品牌策划?
  8. 2020年10月虹科Pico汽车示波器简报
  9. STM32的PID温控
  10. 南工大计算机学院的信息化现状,对我校信息化建设现状的分析及发展建议.doc...