mirror of https://github.com/CrimsonTome/tldr.git
umount, unmount: add Dutch translation (#12190)
parent
7c3fdfb093
commit
2598ce67b9
|
@ -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`
|
|
@ -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
|
# umount
|
||||||
|
|
||||||
> The correct command is umount (u-mount).
|
> The correct command is `umount` (u-mount).
|
||||||
> More information: <https://manned.org/umount.8>.
|
> More information: <https://manned.org/umount.8>.
|
||||||
|
|
||||||
- View documentation for the correct command:
|
- View documentation for the correct command:
|
||||||
|
|
Loading…
Reference in New Issue