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>
28 lines
791 B
Markdown
28 lines
791 B
Markdown
# mount
|
|
|
|
> Fornisce accesso a un intero filesystem in una directory specifica.
|
|
> Maggiori informazioni: <https://manned.org/mount.8>.
|
|
|
|
- Mostra tutti i filesystem montati:
|
|
|
|
`mount`
|
|
|
|
- Monta un dispositivo in una directory:
|
|
|
|
`mount -t {{tipo_di_filesystem}} {{percorso/del/dispositivo}} {{percorso/della/directory_desiderata}}`
|
|
|
|
- Monta un CD-ROM (con il filetypo ISO9660) a `/cdrom` (sola lettura):
|
|
|
|
`mount -t {{iso9660}} -o ro {{/dev/cdrom}} {{/cdrom}}`
|
|
|
|
- Monta tutti i filesystem definiti in `/etc/fstab`:
|
|
|
|
`mount -a`
|
|
|
|
- Monta un filesystem specifico descritto in `/etc/fstab` (ad esempio `/dev/sda1 /my_drive ext2 defaults 0 2`):
|
|
|
|
`mount {{/my_drive}}`
|
|
|
|
- Monta una directory in un'altra directory:
|
|
|
|
`mount --bind {{percorso/della/vecchia_directory}} {{percorso/della/nuova_directory}}`
|