mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-30 23:41:44 +00:00
18 lines
409 B
Plaintext
18 lines
409 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 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}}`
|