Project

General

Profile

BackupTheDataPartition » History » Revision 9

Revision 8 (Denis 'GNUtoo' Carikli, 10/28/2020 06:26 PM) → Revision 9/39 (Denis 'GNUtoo' Carikli, 11/09/2020 07:19 PM)

h1. How to backup the data partition 

 {{toc}} 

 h2. /!\ Warning: Draft 

 This article is in draft form and is being written: 
 * Everybody is welcome to contribute 
 * Some things might not be accurate yet, so beware before using the information contained in it. 

 Also a big part of this article is copied from [[BackupTheEFS]], it would be better to find a way to include content instead. 

 h2. What does the data partition contains? 

 See [[DataPartition]] for more details. 

 h2. Howto 

 TODO:  
 * Link to the EFS backup first part 

 

 h4. Galaxy S III (GT-I9300) (GY-I9300) 

 First, you need to make sure that the data partition is not mounted.  

 To do that, you can run this command: 
 <pre> 
 adb shell "umount -l /data" 
 </pre> 

 If the /data partition was mounted, it will unmount it. This will look like that: 
 <pre> 
 $ adb shell "umount -l /data" 
 $  
 </pre> 

 If it was not mounted, it will instead show an error that we can ignore: 
 <pre> 
 $ adb shell "umount -l /data" 
 umount: /data: Invalid argument 
 </pre> 

 Once this is taken care of, we can backup the partition with the following command: 
 <pre> 
 adb pull /dev/block/platform/dw_mmc/by-name/USERDATA ./ 
 </pre> 

 

 h2. See also 

 * The [[BackupsResearch]] page has information on why the backup is done this way. It might also be useful to read and contribute to it if you intend to change the way the backups are done.