Jump to content

Backup and restore your data: Difference between revisions

From postmarketOS Wiki
SoySoy (talk | contribs)
m See also
Magdesign (talk | contribs)
 
(5 intermediate revisions by 5 users not shown)
Line 1: Line 1:
This article explains how to backup and restore your data.
This article explains how to backup and restore your data.


= rsync =
== rsync ==
A method that works regardless of which UI is installed, is using the tried and tested command-line program rsync.
A method that works regardless of which UI is installed, is using the tried and tested command-line program rsync.


= Backing up data =
=== Backing up data ===
Make sure {{aport|rsync}} is installed on your phone and PC before you begin and [https://wiki.postmarketos.org/wiki/SSH SSH is enabled].
Make sure {{aport|rsync}} is installed on your phone and PC before you begin and [https://wiki.postmarketos.org/wiki/SSH SSH is enabled].


Line 11: Line 11:
  $ mkdir ~/postmarketOS_backup
  $ mkdir ~/postmarketOS_backup
  $ rsync -avz --exclude=.cache <ip address of your phone>:/home/<your username>/ ~/postmarketOS_backup/
  $ rsync -avz --exclude=.cache <ip address of your phone>:/home/<your username>/ ~/postmarketOS_backup/
Example:
$ rsync -avz --exclude=.cache user@172.16.42.1:/home/user/ ~/postmarketOS_backup


{{note|Note the multiple / in the rsync command, they are important!}}
{{note|Note the multiple / in the rsync command, they are important!}}


<code>-a</code> makes sure rsync runs in archive mode, <code>-v</code> increases verbosity so you can see the files being transferred, and <code>-z</code> compresses the files during transfer to speedup the transferring. <code>--exclude=.cache</code> makes sure the <code>~/.cache</code> directory is skipped, as those files are temporary and do not need backing up.
<code>-a</code> makes sure rsync runs in archive mode, <code>-v</code> increases verbosity so you can see the files being transferred, and <code>-z</code> compresses the files during transfer to speedup the transferring. <code>--exclude=.cache</code> makes sure the <code>~/.cache</code> directory is skipped, as those files are temporary and do not need backing up, unless the purpose of the backup is for incident response or manual malware analysis, in which you exclude the exclusion flag.


You can now see all your files from your phone on your PC in <code>~/postmarketOS_backup</code>
You can now see all your files from your phone on your PC in <code>~/postmarketOS_backup</code>


= Restoring data =
If you make a full system backup, make sure to exclude <code>--exclude=/sys/devices/platform/</code> to prevent unwanted shutdowns or reboots.
 
=== Restoring data ===
After making sure your upgraded or new installation is running properly it's time to restore the data you backed up earlier. Make sure {{aport|rsync}} is still installed and SSH is still enabled.
After making sure your upgraded or new installation is running properly it's time to restore the data you backed up earlier. Make sure {{aport|rsync}} is still installed and SSH is still enabled.


Line 28: Line 34:


== See also ==
== See also ==
[Backup and restore your packages]
[[Backup and restore your packages]]


[[Category:Technical Reference]]
[[Category:Technical Reference]]

Latest revision as of 17:41, 23 December 2024

This article explains how to backup and restore your data.

rsync

A method that works regardless of which UI is installed, is using the tried and tested command-line program rsync.

Backing up data

Make sure rsync is installed on your phone and PC before you begin and SSH is enabled.

On your PC, create a folder where you want to backup your phone data too. In our example we'll use ~/postmarketOS_backup.

$ mkdir ~/postmarketOS_backup
$ rsync -avz --exclude=.cache <ip address of your phone>:/home/<your username>/ ~/postmarketOS_backup/

Example:

$ rsync -avz --exclude=.cache user@172.16.42.1:/home/user/ ~/postmarketOS_backup
Note Note the multiple / in the rsync command, they are important!

-a makes sure rsync runs in archive mode, -v increases verbosity so you can see the files being transferred, and -z compresses the files during transfer to speedup the transferring. --exclude=.cache makes sure the ~/.cache directory is skipped, as those files are temporary and do not need backing up, unless the purpose of the backup is for incident response or manual malware analysis, in which you exclude the exclusion flag.

You can now see all your files from your phone on your PC in ~/postmarketOS_backup

If you make a full system backup, make sure to exclude --exclude=/sys/devices/platform/ to prevent unwanted shutdowns or reboots.

Restoring data

After making sure your upgraded or new installation is running properly it's time to restore the data you backed up earlier. Make sure rsync is still installed and SSH is still enabled.

From your PC:

$ rsync -avzu ~/postmarketOS_backup/ <ip address of your phone>:/home/<your username>/

The single letter arguments to rsync are the same with the notable exception of -u. That arguments makes sure files that are newer on the destination (phone) are skipped. This is mainly needed for cases where processes running on the phone constantly alter files (and are thus newer) like KDE's Baloo.

See also

Backup and restore your packages