# `mount`

`mount` attaches a filesystem to a directory.

## Common `mount` usage

- Usually requires `sudo`.

```bash
sudo mount /path/to/filesystem /path/to/mount
```

```bash
sudo mount /dev/sdb1 /opt/data
```

- use [`lsblk`](lsblk.md) to find filesystem
