Update cheatsheets

This commit is contained in:
ivuorinen
2025-07-22 00:22:06 +00:00
parent b8203a5041
commit 191a6f336e
13 changed files with 66 additions and 32 deletions

View File

@@ -10,12 +10,12 @@ source: https://github.com/tldr-pages/tldr.git
- Create an ext2 filesystem in partition 1 of device b (`sdb1`):
`mkfs.ext2 {{/dev/sdb1}}`
`mke2fs -t ext2 {{/dev/sdb1}}`
- Create an ext3 filesystem in partition 1 of device b (`sdb1`):
`mkfs.ext3 {{/dev/sdb1}}`
`mke2fs -t ext3 {{/dev/sdb1}}`
- Create an ext4 filesystem in partition 1 of device b (`sdb1`):
`mkfs.ext4 {{/dev/sdb1}}`
`mke2fs -t ext4 {{/dev/sdb1}}`