From ee8f42d2b5c82836586b981167761e8d6a3cce9c Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Fri, 29 Mar 2024 21:49:54 +0200 Subject: [PATCH] mkfs.f2fs: add page (#12564) Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --- pages/linux/mkfs.f2fs.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 pages/linux/mkfs.f2fs.md diff --git a/pages/linux/mkfs.f2fs.md b/pages/linux/mkfs.f2fs.md new file mode 100644 index 0000000000..b58e6e68d4 --- /dev/null +++ b/pages/linux/mkfs.f2fs.md @@ -0,0 +1,12 @@ +# mkfs.f2fs + +> Creates an F2FS filesystem inside a partition. +> More information: . + +- Create an F2FS filesystem inside partition 1 on device b (`sdb1`): + +`sudo mkfs.f2fs {{/dev/sdb1}}` + +- Create an F2FS filesystem with a volume label: + +`sudo mkfs.f2fs -l {{volume_label}} {{/dev/sdb1}}`