diff --git a/pages.nl/linux/umount.md b/pages.nl/linux/umount.md new file mode 100644 index 000000000..e2b5e854a --- /dev/null +++ b/pages.nl/linux/umount.md @@ -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: . + +- 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` diff --git a/pages.nl/linux/unmount.md b/pages.nl/linux/unmount.md new file mode 100644 index 000000000..27b7fff41 --- /dev/null +++ b/pages.nl/linux/unmount.md @@ -0,0 +1,8 @@ +# unmount + +> Het correcte commando is `umount` (u-mount). +> Meer informatie: . + +- Bekijk de documentatie van het correcte commando: + +`tldr umount` diff --git a/pages/linux/unmount.md b/pages/linux/unmount.md index 2061959de..e1ced6695 100644 --- a/pages/linux/unmount.md +++ b/pages/linux/unmount.md @@ -1,6 +1,6 @@ # umount -> The correct command is umount (u-mount). +> The correct command is `umount` (u-mount). > More information: . - View documentation for the correct command: