Replies: 2 comments 4 replies
-
Not sure you know the history of raspiBackup. raspiBackup initially held features I need only for my Raspberries. I don't use f2fs. All additional features were asked for by raspiBackup users 😉
Yes. 😄 That's why you didn't find any error message description. As far as I can see it's not a big issue to add f2fs support in raspiBackup. If you commit to test f2fs support carefully I'll create a branch for you and finally will add f2fs in next release. |
Beta Was this translation helpful? Give feedback.
-
I just created a branch which includes f2fs support. But please note: It's untested code. You have to verify whether the fix is OK. Please use
to download the code. |
Beta Was this translation helpful? Give feedback.
-
I have recently switched my root filesystem to F2FS to reduce SD card strain (I had several losses recently because SD cards failed likely because of consistently writing ext4 journal to the same location over and over again, although the card had plenty of space left).
Just today I realized that since that switch I have no recent backups of my Raspis anymore. Upon manual inspection I found the error "??? RBK0109E: Nicht unterstütztes Filesystem f2fs auf Partition mmcblk0p3." ("RBK0109E: Unsupported filesystem %s detected on partition %s." in EN; and yes, my / is on 3rd partition, please don't ask 😑).
As the error messages page (https://linux-tips-and-tricks.de/en/raspibackupmessagese/) didn't list this specific error, I had to dive into the source where I found that at https://github.com/framps/raspiBackup/blob/master/raspiBackup.sh#L6559 the F2FS filesystem is not contained as a supported one.
Is there a specific reason for this or am I just the first person to hit this?
From my perspective, F2FS should be comparable to BTRFS at least as long as the backup option is file-based (tar, rsync), not block based (dd). And a block-based backup would also carry risk for data-loss or -corruption with the other filesystems (although the other ones may be more resilient during recovery, but I can't find any recent reports or papers on F2FS for that, only several-year old ones).
Beta Was this translation helpful? Give feedback.
All reactions