1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 09:15:24 +02:00

mkfs.ext4: add page (#3986)

This commit is contained in:
Michael Lindner 2020-04-19 01:27:57 +10:00 committed by GitHub
parent ead6c88196
commit 1fd81dfadc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

11
pages/linux/mkfs.ext4.md Normal file
View file

@ -0,0 +1,11 @@
# mkfs.ext4
> Creates an ext4 filesystem inside a partition.
- 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}}`