17
Changing the location of BTRFS snapshots ?
(lemmy.today)
Whether you're a seasoned pro or the noobiest of noobs, you've found the right place for Linux support and information. With a dedication to supporting free and open source software, this community aims to ensure Linux fits your needs and works for you. From troubleshooting to tutorials, practical tips, news and more, all aspects of Linux are warmly welcomed. Join a community of like-minded enthusiasts and professionals driving Linux's ongoing evolution.
So, you might be misunderstanding how BTRFS snapshots work.
A BTRFS snapshot is not a complete copy of the system, but rather, merely a recording point, and only CHANGES between the current system and the snapshotted system actually take up space. Like, if you snapshot a system, and then install 1 GB of updates, that snapshot only takes up that 1GB of differences in the system.
It's exactly because of this, that it's somewhat difficult to shuffle BTRFS snapshots around.
So, you can use BTRFS send/receive to send subvolumes to other btrfs devices.
So, snapshots are really just a subvolume that only takes up the difference between your main subvolume that you use, and the snapshot subvolume. You can use btrfs send/receive to send them them to another btrfs partition... but I don't know if sending subsequent backups will deduplicate data properly.
What you might want instead, are rsync backups. Timeshift also supports rsync backups, which copy all the data over to any device using rsync for the initial backup, but then use hardlinks to store only the changes between the backups for subsequent backups. Similar to btrfs โ but simpler, is my understanding.
Thank you.
I'm still learning how BTRFS works. I stopped using rsync because I don't have lots of storage. I also think btrfs is easier on disk read and write operations.