mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-23 02:55:36 +02:00
umount, unmount: add Dutch translation (#12190)
This commit is contained in:
parent
7c3fdfb093
commit
2598ce67b9
3 changed files with 34 additions and 1 deletions
25
pages.nl/linux/umount.md
Normal file
25
pages.nl/linux/umount.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
# umount
|
||||
|
||||
> Koppel een bestandssysteem los vanuit het mount-punt, waardoor het niet langer toegankelijk is.
|
||||
> Een bestandssysteem kan niet losgekoppeld worden als het bezig is.
|
||||
> Meer informatie: <https://manned.org/umount.8>.
|
||||
|
||||
- Koppel een bestandssysteem los door het pad op te geven van de bron waarop het gemount is:
|
||||
|
||||
`umount {{pad/naar/apparaat_bestand}}`
|
||||
|
||||
- Koppel een bestandssysteem los door het pad op te geven waarop het gemount is:
|
||||
|
||||
`umount {{pad/naar/gemounte_map}}`
|
||||
|
||||
- Als het loskoppelen faalt, probeer het bestandssysteem dan opnieuw te koppelen in leesmodus:
|
||||
|
||||
`umount --read-only {{pad/naar/gemounte_map}}`
|
||||
|
||||
- Koppel ieder gespecificeerde map recursief los:
|
||||
|
||||
`umount --recursive {{pad/naar/gemounte_map}}`
|
||||
|
||||
- Koppel alle gemounte bestandssystemen los (behalve het `proc` bestandssysteem):
|
||||
|
||||
`umount -a`
|
8
pages.nl/linux/unmount.md
Normal file
8
pages.nl/linux/unmount.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
# unmount
|
||||
|
||||
> Het correcte commando is `umount` (u-mount).
|
||||
> Meer informatie: <https://manned.org/umount.8>.
|
||||
|
||||
- Bekijk de documentatie van het correcte commando:
|
||||
|
||||
`tldr umount`
|
|
@ -1,6 +1,6 @@
|
|||
# umount
|
||||
|
||||
> The correct command is umount (u-mount).
|
||||
> The correct command is `umount` (u-mount).
|
||||
> More information: <https://manned.org/umount.8>.
|
||||
|
||||
- View documentation for the correct command:
|
||||
|
|
Loading…
Add table
Reference in a new issue