Learn how to attach storage and remote shares with the Linux mount command and make filesystems available to the system. 12.04.2026 | reading time: 3 min The `mount` command is how Linux makes a block device, file image or network share available in the directory tree; he will use it every time he needs to access disks, ISOs or remote exports. A USB stick in seconds Practical case: plug a USB drive, identify it with `lsblk`, then attach it and confirm contents using `sudo mount /dev/sdb1 /mnt/usb` and `ls /mnt/usb` which should list the drive files; to check the active mount run `findmnt /mnt/usb` and to detach use `sudo umount /mnt/usb`. Mounting an ISO and a network share Mount an ISO image with `sudo mount -o loop disk.iso /mnt/iso` to browse its files, and mount an NFS export with `sudo mount -t nfs server.example.com:/export /mnt/nfs`; `mount | grep /mnt` shows both entries and `df -h /mnt/iso` reports available space when relevant. Options that matter Use `-t` to force a filesystem type and `-o` for options like `ro`, `noexec`, `nodev`, `bind` and performance flags; add persistent mounts to `/etc/fstab` with lines like `UUID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx /mnt/data ext4 defaults 0 2` but test with `sudo mount -a` before rebooting to avoid boot failures. Caveats and container context Be careful: busy mounts refuse unmounting until processes release files, so use `lsof` or `fuser` to find offenders; remember that containers can have mount namespaces so a mount inside a container does not necessarily affect the host and vice versa. Related utilities in daily use Common helpers include `umount` to unmount, `lsblk` and `blkid` for device discovery, `findmnt` and `mountpoint` for verification, and `systemd-mount` or autofs for dynamic or systemd-managed automounts. Next steps for mastery Start by practicing safe mounts on throwaway directories, experiment with `bind` mounts and loopback images, then read `/etc/fstab` and systemd automount docs; keep learning and consider formal certification like CompTIA Linux+ or LPIC-1 with intensive exam preparation at bitsandbytes.academy to deepen and validate your skills. Join Bits & Bytes Academy First class LINUX exam preparation. filesystem storage utilities boot-process troubleshooting