hperrin,

Ok, I don’t get it. Can you explain it to me?

0x4E4F,

Timeshift works only with BTRFS subvolumes, thus, if you wanna have backups (snapshots), you have to have subvolumes and not install in the root of a BTRFS filesystem 😔.

PrecisePangolin,

Thank you for sharing your knowledge.

eager_eagle,
@eager_eagle@lemmy.world avatar

That’s only to backup/rollback the root though, right? If one’s looking to backup - say - their home dir, they can just recreate the home as a subvolume without reinstalling the system. Or am I mistaken?

AnonStoleMyPants,

You can definitely do this with a few commands.

raldone01,

github.com/…/btrfs_folder_to_subvol.fish

Because I often forget to do it I wrote a little helper script.

This file can be run or sourced and only depends on btrfs-progs and fish.

0x4E4F,

Awww man, thanks ☺️.

Good thing I love fiish, it’s my default shell 😉.

0x4E4F,

Yes, you can just set it to mount a, let’s say @home, subvolume to /home and that’s that, done.

reflex,
reflex avatar

Timeshift

Oh okey so if I have Snapper already, nothing I need to worry about?

valveman,

Snapper also uses btrfs subvolumes to create snapshots, so if you did create them during your installation process, nothing to worry about.

I don’t remember if there is a way to create them after the installation, neither if it’s a tough process tho. I used to simply reinstall when I messed up with the subvolumes.

backhdlp,
@backhdlp@lemmy.blahaj.zone avatar

sudo btrfs subvolumes create /path/to/subvolume

If you don’t configure anything, root will already be a subvolume.

If you wanna make a used directory a subvolume, you have to move the contents first, and move them back after creation.

The only thing that takes time here is the move

0x4E4F,

Yeah, but Timeshift uses the Ubuntu style subvolume naming, @ for root, @home for /home, so you have to create them that way, otherwise, it won’t work. It can work if you tell it to ignore home, but checks for @ as root on start up.

backhdlp,
@backhdlp@lemmy.blahaj.zone avatar

Wasn’t aware of that, using snapper for my snapshotting needs.

0x4E4F,

I haven’t tried it. Does it have like daily, weekly, monthly snapshots setup?

backhdlp,
@backhdlp@lemmy.blahaj.zone avatar

You can have hourly, daily, weekly, monthly and yearly. I also use snap-pac to make snapshots before and after pacman transactions.

Check out wiki.archlinux.org/title/Snapper

domi,
@domi@lemmy.secnd.me avatar

Check out Btrfs Assistant. It does what Timeshift does with a similar UI but works with any subvolume layout.

0x4E4F,

Hm, will check it out, thanks for the suggestion 😉.

Turun,

If you want to you can just create a new subvolume, mount it temporarily and move all your files from root to there. Then you need to figure out how to make the new subvolume your root directory upon boot and you are done.

0x4E4F, (edited )

I know how to do that, you set the subvolume as the default one, thus, when mounting, if no options are passed, it always mounts that subvolume as root.

But, you have to disable that. Sure, I set it during install, cuz installers are stupid (if you tell it to install in /@, it will most probably moan), but disable it after first run (set the real root as the default subvol, i.e. mount point) and just add subvol mount options in fstab.

It’s just extra steps I have to do now 😒, that’s why the rant.

rostby,

Immutable distros rejoice 😎

0x4E4F,

Take way too much space… I dual boot on the same drive 🤷.

mac,
@mac@infosec.pub avatar

My most recent version of this was symlinking SSL Certs before building Nix packages, a simple task I just kept forgetting to and was then greeted by errors.

cashews_best_nut,

I use btrfs. Is there a reason I’d want subvolumes? What are they for? Why not just use partitions?

0x4E4F,

Snapshot software works with subvolumes, not with partitions.

acockworkorange,

Mint automatically creates a @home sub volume if you install your root in a Btrfs partition. Just saying.

0x4E4F,

Yeah, Ubuntu does it as well. But other distros not based on Ubuntu, don’t.

Knusper,

Well, openSUSE did it long before everyone else. So, Debian, Fedora, Arch?

I would kind of be surprised by Fedora, too, as I thought, they shipped out-of-the-box automatic snapshotting, but the comment from @bruhduh sounds like that is still a problem…

acockworkorange,

OpenSUSE does this as default, which is laudable. Mint will only use Btrfs if you manually tell it to, it just handles it gracefully once you do choose to use it.

0x4E4F,

Arch, probably not, Void, most definitely not.

bruhduh,
@bruhduh@lemmy.world avatar

Yeah i was surprised as well) thought automatic btrfs partitioning by fedora gui installer would suffice, but it’s not, it did not had subvolumes set after installation, so timeshift btrfs didn’t worked, after i set subvolumes timeshift started working, but after update from 38 to 39 everything broke and locked up my ssd

Johanno,

Hold on a minute. I can do subvolumes without partitioning?

0x4E4F,

Yep, you just add/remove them with btrfs tools.

Chewy7324,

A single btrfs partition on a drive with multiple subvolumes is the way to go.

bruhduh,
@bruhduh@lemmy.world avatar

Fedora be like) i broke my recent fedora installation because of that, installed fedora 38 two months ago, made sub volumes, updated to 39, and it broke, and locked up whole ssd with it, had to recover data

Discover5164,

you can create them afterwards and move the stuff into the subvol. do it from a live usb and don’t forget to update fstab. be sure to use rsync with the flag to keep permissions etc

0x4E4F,

Yeah, that should work, thanks 👍.

cashews_best_nut,

You’re welcome

AffineConnection, (edited )

That’s simple, but it’s a completely unnecessary waste of I/O. You could create a writable snapshot of the btrfs root as a subvolume, edit the fstab and any other relevant files within that new subvolume, reconfigure the bootloader to specify that subvolume as the root filesystem (as a Linux kernel command line argument) instead of the btrfs root, and then reboot. After rebooting, the original btrfs root can be mounted, and everything unwanted from the original root (other than the new subvolume and its ancestor directories, obviously) can be deleted. Do not delete anything that you didn’t want to lose the changes to on the original root subvolume that you did after creating the snapshot, as the snapshot only remembers what you did before, as well as the changes made specific only to it (like the fstab).

If one wanted to create multiple subvolumes for different purposes, the above procedure can be modified. For instance, if one wanted a separate subvolume mounted at / vs /home, then one can create two writable snapshots, empty out the contents of home in new subvolume 1 (but not the /home directory itself because you want the directory to exist for something to mount onto it), empty out everything outside of home within new subvolume 2, move the contents of home therein up one directory and remove the /home directory itself. Now, one can edit the fstab in new subvolume 1 as appropriate (not forgetting to have new subvolume 2 mount at /home), edit any other relevant files, reconfigure the bootloader to tell the Linux to use new subvolume 1 as the root subvolume, then reboot. Finally, one can remove the unnecessary files from the original root.


Edit:

It is arguably better to manually specify the new root when booting in the Linux kernel command line, and not reconfigure the bootloader until you successfully boot. After success, (if the following is relevant to your system) use update-grub, and it should look at fstab to automatically reconfigure the bootloader accordingly to use the appropriate new subvolume as specified at fstab.

This is what I did years ago to one of my own systems, although I don’t know anything about Timeshift and how it requires things to be set up (I have my own backup scripts that are run by cron). I could have just snapshotted the btrfs root directly for snapshots, but I wanted the snapshots to be cleanly separated from the subvolume used as the Linux VFS root (except when I explicitly mount them).

Discover5164,

you’re right, this is a solution efficiently using the btrfs features. thank you

bjoern_tantau,
@bjoern_tantau@swg-empire.de avatar

I thought the flexibility of BTRFS was that you could basically always add subvolumes. Shows what I know.

0x4E4F,

Yes, you can, but now I have to move the entire install to a subvolume, risking borking the install 😒.

zzzz,

Or, ya know, just reinstall right quick.

0x4E4F,

Yeah, I’m thinking between that and rsync-ing to a new subvolume… the install is just bare bones, almost nothing was set up.

Ooops,
Ooops avatar

Yes, you can. But the usual setup is to have a file system root that is nothing but subvolumes, which you can then use and mount basically as if they were independent partitions. But when you don't create a root subvolume for your system root first, you install the system directly on the file system root alongside created subvolumes. This tends to get messy as strictly speaking the file system root is a subvolume, too. So now you have that with your system installed and all other subvolumes nested inside it.

Chewy7324,

Yes. Usually the OS installer takes care of creating a root and home subvolume. Except Arch and similar barebones installer have instructions in the wiki.

CarlosCheddar,

Me when I converted to btrfs from ext4. I went in blind and had no idea about sub volumes.

shunir,

Same.

0x4E4F,

I need it because of Timeshift, it works with subvolumes only.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • linuxmemes@lemmy.world
  • mdbf
  • DreamBathrooms
  • cisconetworking
  • magazineikmin
  • InstantRegret
  • everett
  • thenastyranch
  • Youngstown
  • rosin
  • slotface
  • khanakhh
  • Durango
  • kavyap
  • ethstaker
  • megavids
  • anitta
  • modclub
  • osvaldo12
  • normalnudes
  • ngwrru68w68
  • GTA5RPClips
  • tacticalgear
  • provamag3
  • tester
  • Leos
  • cubers
  • JUstTest
  • lostlight
  • All magazines