Disk

mount

Mount a filesystem to make it accessible at a directory mount point.

Synopsis

syntax
mount [OPTION]... DEVICE DIRECTORY

Examples

Mount USB drive
sudo mount /dev/sdb1 /mnt/usb
Mount ISO image
sudo mount -t iso9660 image.iso /mnt/iso
Remount root filesystem as read-write
sudo mount -o remount,rw /
Mount all entries in /etc/fstab
sudo mount -a

Common options

FlagDescription
-tFilesystem type
-oMount options (ro, rw, noexec, nosuid)
-aMount all filesystems in /etc/fstab
-rMount read-only
--bindBind 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

Related tools