mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-01 17:42:31 +00:00
18 lines
400 B
Plaintext
18 lines
400 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# mkfs.f2fs
|
|
|
|
> Create an F2FS filesystem inside a partition.
|
|
> More information: <https://manned.org/mkfs.f2fs>.
|
|
|
|
- Create an F2FS filesystem inside partition Y on device X:
|
|
|
|
`sudo mkfs.f2fs {{/dev/sdXY}}`
|
|
|
|
- Create an F2FS filesystem with a volume label:
|
|
|
|
`sudo mkfs.f2fs -l {{volume_label}} {{/dev/sdXY}}`
|