Practical steps to mount a remote NFS export from the shell and tune options for performance and reliability. 13.04.2026 | reading time: 2 min When you need a remote filesystem on a Linux host, `mount.nfs` is the helper that mounts NFS exports reliably; this short guide shows what to run, what to check and which options actually matter. Mounting in practice First check what the server exports and then mount; for example run the following to inspect exports and mount an export, where the first command lists exports and the second mounts them: ```$ showmount -e nfs-server.local Exports list on nfs-server.local: /export/data 192.168.1.0/24 $ sudo mount.nfs nfs-server.local:/export/data /mnt/data -o rw,vers=4,proto=tcp $ df -h /mnt/data Filesystem Size Used Avail Use% Mounted on nfs-server.local:/export/data 100G 1G 99G 1% /mnt/data``` Options that change behavior Tune performance and reliability with options such as `vers=` to select NFS version, `proto=` for UDP/TCP, `rsize`/`wsize` for IO block size, `hard` vs `soft` and `timeo`/`retrans` for retry behavior, and `sec=` for security (e.g. `krb5`); also ensure the client package is installed (`nfs-common` or `nfs-utils`) and that id mapping is handled if UID/GID consistency matters. Troubleshooting and checks If mounting fails, check reachability with `ping` and `rpcinfo`, verify exports with `showmount -e`, inspect kernel NFS stats with `nfsstat`, review `dmesg` and `journalctl` for permission or protocol errors, and confirm firewall and server export options such as `no_subtree_check` or `rw` rights. Complementary services For automatic mounts consider `autofs` or systemd automount units; use `exportfs` on the server to manage exports and integrate with Kerberos for secure environments; in production monitor with `nfsstat` and include NFS mounts in backup plans where consistency matters. Where to go next Mastering `mount.nfs` opens a path to managing network filesystems at scale; keep practicing, read man pages for `mount.nfs` and `nfs.conf`, and consider formal certification to validate skills with courses like CompTIA Linux+ or LPIC-1 and intensive exam prep at bitsandbytes.academy. Join Bits & Bytes Academy First class LINUX exam preparation. network filesystem storage utilities troubleshooting