mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-02 08:42:55 +00:00
18 lines
390 B
Plaintext
18 lines
390 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# mkfs.cramfs
|
|
|
|
> Create a ROM filesystem inside a partition.
|
|
> More information: <https://manned.org/mkfs.cramfs>.
|
|
|
|
- Create a ROM filesystem inside partition Y on device X:
|
|
|
|
`mkfs.cramfs {{/dev/sdXY}}`
|
|
|
|
- Create a ROM filesystem with a volume-name:
|
|
|
|
`mkfs.cramfs -n {{volume_name}} {{/dev/sdXY}}`
|