Ok, so I've read the master posts and Grey's post (https://www.kubuntuforums.net/showth...-and-SNAPSHOTS) on subvoumes and incremental backups, but I'm still a bit unclear on how to perform an incremental backup.
I'm guessing that I would do:
The only concern that I have when doing this is that it appears to require that the backup is on the same disk that created it. (Which is a problem in my case since my whole system backup would be 600GB and my hard drive is 1TB. I could be wrong about that, but what would be done in this case?
In following the first snapshots tutorial, my /dev/sda1 partition is the boot partition as revealed by lsblk:
I'm not entirely sure that I should mount of mess around with the boot parition. Is that what is required to get the tree available for snapshot use?
I'm guessing that I would do:
Code:
btrfs subvolume snapshot -r @home (I think I need a file for this? Would this be ~?) /media/sarah/HomeBackup-03-01-2019 btrfs send -p /media/sarah/ELYSIUM/HomeBackup-01-01-2019 ~/HomeBackup-03-01-2019 | btrfs receive /media/sarah/ELYSIUM/BackupFolder
In following the first snapshots tutorial, my /dev/sda1 partition is the boot partition as revealed by lsblk:
Code:
[FONT=monospace][COLOR=#54FF54][B]sarah@ConvergentRefuge[/B][/COLOR]:[COLOR=#5454FF][B]~[/B][/COLOR]$ lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 931.5G 0 disk ├─sda1 8:1 0 512M 0 part /boot/efi ├─sda2 8:2 0 775.6G 0 part /home ├─sda3 8:3 0 138.9G 0 part /media/sarah/79F8D858044BC8BB └─sda4 8:4 0 819M 0 part sdb 8:16 0 22.4G 0 disk └─sdb1 8:17 0 3.8G 0 part sdc 8:32 0 111.8G 0 disk └─sdc1 8:33 0 111.8G 0 part /media/sarah/ELYSIUM sdd 8:48 1 7.5G 0 disk ├─sdd1 8:49 1 1.8G 0 part /media/sarah/Kubuntu 18.04.1 LTS amd64 └─sdd2 8:50 1 2.3M 0 part sde 8:64 1 14.9G 0 disk └─sde1 8:65 1 14.9G 0 part sdg 8:96 0 931.5G 0 disk └─sdg1 8:97 0 931.5G 0 part /media/sarah/SENTINEL sr0 11:0 1 1024M 0 rom [/FONT]
I'm not entirely sure that I should mount of mess around with the boot parition. Is that what is required to get the tree available for snapshot use?
Comment