rikosjett


Mount NFS file system to Ubuntu

Published at 3 April 2021

#linux#server

Install dependencies (if missing)

SHELL
$ sudo apt update $ sudo apt install nfs-common

Create mount directory

SHELL
$ mkdir <dir name>

Mount NFS share

SHELL
$ sudo mount -t nfs <host ip>:<share> <mount dir>