I would like to backup my Librem 5 using jumpdrive. How can I create a full system backup of my Librem 5 using jumpdrive?
1 Answer
Install JumpDrive
Download the latest build from JumpDrive
Download the latest build of Jumpdrive
Open the Files app, and select Downloads on the left side bar
Find purism-librem5.tar.xz and right-click it to show the menu
Select Extract Here
Open the new folder, purism-librem5
Right-click in the blank space and select Open in Terminal
In the terminal, run this command to install uuu: sudo apt install -y uuu
If prompted for your password, type it and press Enter. Nothing will be shown while typing your password. For security reasons, just type it and press Enter.
Leave the terminal open and proceed to the next steps.
Source: Repairing a broken installation: Back up important files using Jumpdrive
Put the phone in flash mode
- Fully power off the phone.
- Disable all hardware killswitches.
- Remove the battery from the phone.
- Plug in the USB cable to your Linux PC.
- Hold the volume-up button on the phone.
- Plug in the USB cable to the phone. The notification LED should blink red.
- Reinsert the phone battery. The notification LED will appear solid red.
- Release the volume-up button on the phone.
Source: Repairing a broken installation: Back up important files using Jumpdrive
Connect Librem 5 to PC
- On your Linux PC, in the terminal you opened, run this command:
- sudo ./boot-purism-librem5.sh
- Type your password if prompted and press Enter. Nothing will be shown while typing your password. For security reasons, just type it and press Enter.
- After a few seconds, the Librem 5 will show an image and say “Jumpdrive is running”
- Your PC should be prompt for a passphrase to access the Librem 5. Enter the passphrase you use when booting the Librem 5.
Source: Repairing a broken installation: Back up important files using Jumpdrive
Backing up your device
Check which device is the Librem 5:
usr@domain:~/Backups$ lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS sda 8:0 1 29.1G 0 disk ├─sda1 8:1 1 465M 0 part /media/usr/<ID> └─sda2 8:2 1 28.7G 0 part └─luks-<ID> 252:2 0 28.6G 0 crypt /media/usr/<ID> <Other Items> In mine (and in most devices) it is sda. If yours is different, you can just change the following snippets to use your device's name.
First unmount any partitions: I think you may have to wait if the device is busy or still being mounted.
sudo umount /dev/sda* Then create a backup:
sudo dd if=/dev/sda of=sda-librem5-backup.img status=progress Source: Can I safely utilize `dd` to backup my drive to a singular image file?
And tada!!! All done :)