umount

Linux · System · available in the simulator

What it does

Unmounts a filesystem.

Syntax

umount [opciones] punto_de_montaje

Options and parameters

  • -l

    Lazy unmount: detaches the filesystem immediately and cleans up when it is no longer busy.

  • -f

    Forces unmount.

  • -a

    Unmounts all listed filesystems.

Usage examples

  • sudo umount /mnt
  • sudo umount -l /mnt
  • umount /mnt
Practise umount

Related commands