mount
Mount a filesystem to make it accessible at a directory mount point.
Synopsis
mount [OPTION]... DEVICE DIRECTORY
Examples
sudo mount /dev/sdb1 /mnt/usb
sudo mount -t iso9660 image.iso /mnt/iso
sudo mount -o remount,rw /
sudo mount -a
Common options
| Flag | Description |
|---|---|
| -t | Filesystem type |
| -o | Mount options (ro, rw, noexec, nosuid) |
| -a | Mount all filesystems in /etc/fstab |
| -r | Mount read-only |
| --bind | Bind mount a directory to another location |
About mount
The `mount` command mount a filesystem to make it accessible at a directory mount point. Disk commands handle low-level storage operations including partitioning, formatting, filesystem checks, and block device management.
These tools are critical during system installation, storage expansion, data recovery, and performance tuning. Always exercise caution — disk operations can cause data loss if used incorrectly.
The command accepts 5 commonly used flags shown above, though the full set of options is available in the man page (`man mount`). The 4 examples on this page cover typical real-world usage patterns that you can copy and adapt for your own workflows.
Related commands
More Disk Commands
Other commands in the Disk category