mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-30 12:41:37 +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.ext4
|
|
|
|
> Create an ext4 filesystem inside a partition.
|
|
> More information: <https://manned.org/mkfs.ext4>.
|
|
|
|
- Create an ext4 filesystem inside partition 1 on device b (`sdb1`):
|
|
|
|
`sudo mkfs.ext4 {{/dev/sdb1}}`
|
|
|
|
- Create an ext4 filesystem with a volume-label:
|
|
|
|
`sudo mkfs.ext4 -L {{volume_label}} {{/dev/sdb1}}`
|