# 111,2049 - NFS

{% tabs %}
{% tab title="List" %}

```bash
# List available directories
sudo showmount -e <target-ip>
```

{% endtab %}

{% tab title="Mount Locally" %}

```bash
# Create a directory to mount the share
$ mkdir /mnt/dev

# Mount the share
$ mount -t nfs <target-ip>:/srv/nfs /mnt/dev
```

{% endtab %}
{% endtabs %}
