F2FS: Difference between revisions
Prabuanand (talk | contribs) m (fixed category name) |
(Edit f2fs modules) |
||
(One intermediate revision by the same user not shown) | |||
Line 5: | Line 5: | ||
The motive for F2FS was to build a file system that, from the start, takes into account the characteristics of NAND flash memory-based storage devices (such as solid-state disks, eMMC, and SD cards), which are widely used in computer systems ranging from mobile devices to servers. | The motive for F2FS was to build a file system that, from the start, takes into account the characteristics of NAND flash memory-based storage devices (such as solid-state disks, eMMC, and SD cards), which are widely used in computer systems ranging from mobile devices to servers. | ||
{{Warning| Using F2FS for the rootfs will cause fsck service to fail, see https://gitlab.alpinelinux.org/alpine/aports/-/issues/17543}} | |||
== Installation == | == Installation == | ||
Line 23: | Line 25: | ||
== f2fs module == | == f2fs module == | ||
<code>f2fs</code> needs to be manually added to <code>/etc/mkinitfs/mkinitfs.conf</code> if you are using it for rootfs. | |||
Otherwise add it to /etc/modules: | |||
{{Cmd|echo f2fs >> /etc/modules}} | {{Cmd|echo f2fs >> /etc/modules}} | ||
You need the module to mount partitions that are not rootfs. | |||
== See also == | == See also == |
Latest revision as of 17:36, 24 September 2025
F2FS (Flash-Friendly File System) is a flash file system initially developed by Samsung Electronics for the Linux kernel.
The motive for F2FS was to build a file system that, from the start, takes into account the characteristics of NAND flash memory-based storage devices (such as solid-state disks, eMMC, and SD cards), which are widely used in computer systems ranging from mobile devices to servers.

Installation
Out of the box Alpine Linux doesnt support making F2FS partitions, that can be added with:
# apk add f2fs-tools
Formatting a partiton using F2FS
You can format a partition using F2FS with the following command:
/dev/sda1
is used as a example# mkfs.f2fs /dev/sda1
f2fs module
f2fs
needs to be manually added to /etc/mkinitfs/mkinitfs.conf
if you are using it for rootfs.
Otherwise add it to /etc/modules:
echo f2fs >> /etc/modules
You need the module to mount partitions that are not rootfs.