mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

- Replace "al" -> "del", "alla" -> "della", etc. in command paths - Replace all instances of "cartella" with "directory" - Update contributing-guides/translation-templates/common-arguments.md to reflect these changes Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> Co-authored-by: Marco Bonelli <marco@mebeim.net> Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
17 lines
563 B
Markdown
17 lines
563 B
Markdown
# mkfs
|
|
|
|
> Costruisce un filesystem Linux su una partizione del disco rigido.
|
|
> Questo comando è deprecato in favore degli strumenti specifici per filesystem: mkfs.tipo.
|
|
> Maggiori informazioni: <https://manned.org/mkfs>.
|
|
|
|
- Costruisce un filesystem Linux ext2 su una partizione:
|
|
|
|
`mkfs {{percorso/della/partizione}}`
|
|
|
|
- Costruisce un filesystem del tipo specificato:
|
|
|
|
`mkfs -t {{ext4}} {{percorso/della/partizione}}`
|
|
|
|
- Costruisce un filesystem del specificato e controlla la presenza di settori danneggiati:
|
|
|
|
`mkfs -c -t {{ntfs}} {{percorso/della/partizione}}`
|