this post was submitted on 01 Jul 2021
14 points (100.0% liked)

Asklemmy

44903 readers
2054 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy πŸ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_[email protected]~

founded 5 years ago
MODERATORS
 

Which do you prefer and why for HDD or SDD hard disks ? And how is Ext4 with power failures nowadays ? iirc a few years ago there were issues with Ext3 (Yes, Ext3) and I remember a no barrier option was needed ? Is Ext4 much better ? And what FS do you prefer on usb storage ?

top 21 comments
sorted by: hot top controversial new old
[–] [email protected] 6 points 3 years ago

I've been liking BtrFS for the snapshots, send/receive, and subvolumes/quota.

[–] [email protected] 5 points 3 years ago (1 children)
[–] [email protected] 2 points 3 years ago

Cool! Thanks for this. I remember I read about bcachefs years ago. I see that it has made much progress, gets good reviews and it has a sub Reddit with more recent info. I read that the --help only had up to date info (unlike wiki, man page). I hope this will be accepted by upstream Linux kernel.

[–] [email protected] 4 points 3 years ago

ext4 for extreme reliabilty cases, BTRFS for everything else

[–] [email protected] 4 points 3 years ago (1 children)

exfat for simple USB Storage, works on any OS (linux just needs exfat-utils and fuse)

Ext4 for linux drives

[–] [email protected] 1 points 3 years ago (1 children)

wasn't exfat support included some time ago into the kernel?

[–] [email protected] 2 points 3 years ago* (last edited 3 years ago)

Yes, it was added into Linux Kernel 5.4 in November 2019 after Microsoft open-sourced exFAT [quick context overview].

[–] [email protected] 3 points 3 years ago

ext4 works very well. I had stability issues with btrfs the multiple times I've tried it.

[–] [email protected] 3 points 3 years ago (1 children)

Hmm that really depends on the specific situation and use case. For simple usb drives I usually use exFat these days as there are no file permission issues as with ext4. System drive ssd I use ext4 and on the server/nas I use zfs.

[–] [email protected] 3 points 3 years ago (1 children)

I agree with exFAT mostly for that and compatibilty.

With PC I tend to use XFS in comparison both in HDD and SSD.

[–] [email protected] 2 points 3 years ago (1 children)

What about Snapshots in XFS? I think, they added this years ago.

I lived BTRFS for snapshots, but had much problems on an external drive and multiple times data loss... a broken cable was the reason... but the drive wotked with ext4 much better than with btrfs...

And on a hybrid SSHD also btrfs is not the best idea, if you use snapshots (every hour for example eith cron). It makes the SSHD as slow as the HDD behind the SSD-cache....

[–] [email protected] 1 points 3 years ago (1 children)

https://en.wikipedia.org/wiki/XFS#Snapshots

I don't think that are a good idea in a running environment...

Anyways, for backups I use the traditional way. The thing in which I am interested is data deduplication.

[–] [email protected] 1 points 3 years ago (1 children)

ok. making snapshots with btrfs is also no backup-strategy (alone). But sending the snapshot to an external drive or backup-store is a really good thing for making backups. Much faster than doing this with rsync.

[–] [email protected] 1 points 3 years ago (1 children)

Don't use rsync. I do them with Nextcloud or Syncthing and sometimes manually.

For other cases, I use a manager for an Hypervisor for VMs to make programmed backups, also including snapshots.

For me, an snapshot is a backup method.

[–] [email protected] 1 points 3 years ago (2 children)

BTRFS-snapshots only is no backup-method. Only if you send them to an external Store (external HD, SAN, NAS...) In case of deduplication and Copy-On-Write, a snapshot is physically the same store-location as the original. Only the few changed parts of the whole filesystem are stored on another physical place on the same HD.

So if you use BTRFS-snapshots you MUST send/receive the snapshots to another medium, if you want to use snapshots as backup. Data-loss is so a big danger.

[–] [email protected] 1 points 3 years ago* (last edited 3 years ago) (1 children)

I think you understand backup not as the real abstract concept but as a sub-class called "a secure way to make a backup".

If you copy a file to other folder to the same hard drive it is still a backup.

The same happens with the btrfs-snapshots if the idea are for the files or changes you made in an Operating System installation (OpenIndiana with ZFS snapshots made for every system upgrade).

[–] [email protected] 2 points 3 years ago

In BTRFS if you copy a File to another folder, only the reference is created. The physically information, what IS the file, is still the same. If you use [code]cp --reflink=always[/code] for sure.

So if you make a Snapshot with BTRFS, it's almost like a hardlink. The file disappears, when the last reference gets deleted. But al reference-files break, if the physically location on the HD breaks.

So... making a snapshot in btrfs is not a backup for me. It is a good way for a fast rollback. It is a good way for deduplication. It is a good way for daily work. But a real backup for me is a physically separated store for the information.

Make snapshots on a computer for fast rollback, or after system upgrade - even here for fast rollback. Or if I'm working on my photos, i do automatically every 10 minutes a snapshot. So a wrong command does only destroy the work of maximum 10 minutes... never the whole work.

But backup... i make differential snapshots and send them with btrfs send/receive to another drive, so the snapshot is pyhsically duplicated on a separate store. One HD can break... i have a backup.

Do you understand, what i mean?

[–] [email protected] 1 points 3 years ago* (last edited 3 years ago)

Maybe the example I gave was not enough.

The point of snapshots is serving as some kind of incremental backups always dependent of a main backup or the main instance.

Always the changes are copied, it is valid, even if a delta of a file was the only thing saved.

This applies to systems with deduplication enabled and COW.

[–] [email protected] 3 points 3 years ago

Bfrfs for automatic snapshots and easier data recoverability out-of-the-box. I use it on SSD, but I imagine that on a HDD it works just fine too.

[–] [email protected] 2 points 3 years ago (1 children)

Here’s something different. I use several external USB drives with mergeFS + EXT4 to backup my file server (LVM + EXT4).

[–] [email protected] 1 points 3 years ago

Cool, thanks for the mergerFS mention. Since this is packaged for Debian, and in Arch Linux AUR, I am eager to try this.