---
title: "showmount-e"
description: "TIL how to display the list of nfs mounts on your network."
date: 2024-04-25
published: true
tags:
  - linux
template: til
---


TIL how to display the list of nfs mounts on your network.

``` bash
showmount -e
```

You can even look for mounts of other machines on your network.

``` bash
showmount -e <hostname>
```
