You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 27, 2023. It is now read-only.
F2FS has been designed on the basis of log-structured filesystems, with the goal of performing optimally on managed flash media like SD cards, minimizing writes and extending their lifetime. It has seen some usage on Android phones, and it's constantly being improved with features that Raspberry Pi would very much like to have, like online compression.
Currently Raspberry Pi OS root partition can be converted to F2FS using a time-consuming process:
Mount SD card with Linux PC
Back up root partition
Make F2FS filesystem on the SD card
Restore backup to the new partition
Update fstab and boot command line on the SD card
This is a dangerous and write-intensive process. In order to avoid it, it would be nice if installation could be done directly on a F2FS root partition.
The text was updated successfully, but these errors were encountered:
this will crate FS tarball /md0/RasPi.Backup.FS.tar.gz
/md0 is external location like USB drive
take your sdcard and usb on the linux pc, format sdcrad parttion new F2FS
then restore
sudo tar -xvpzf /path/to/RasPi.Backup.FS.tar.gz -C /mount/sdc2 --numeric-owner
update your fastab
may this help you
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
F2FS has been designed on the basis of log-structured filesystems, with the goal of performing optimally on managed flash media like SD cards, minimizing writes and extending their lifetime. It has seen some usage on Android phones, and it's constantly being improved with features that Raspberry Pi would very much like to have, like online compression.
Currently Raspberry Pi OS root partition can be converted to F2FS using a time-consuming process:
fstab
and boot command line on the SD cardThis is a dangerous and write-intensive process. In order to avoid it, it would be nice if installation could be done directly on a F2FS root partition.
The text was updated successfully, but these errors were encountered: