# 2049 - NFS

* Mostrar compartilhamentos NFS disponíveis.

```bash
showmount -e $IP
```

* Monte o compartilhamento NFS específico em ./target-NFS

```bash
mount -t nfs $IP:share ./target-NFS/ -o nolock
```

* Desmonte o compartilhamento NFS específico.

```bash
umount ./target-NFS
```
