Update cheatsheets

This commit is contained in:
ivuorinen
2024-03-30 00:12:49 +00:00
parent e08116a2b7
commit c788dd98cb
3 changed files with 20 additions and 3 deletions

17
tldr/linux/mkfs.f2fs Normal file
View File

@@ -0,0 +1,17 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# mkfs.f2fs
> Creates 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}}`