Setting Up an NFS Server in Ubuntu

You may need to setup an NFS server on Ubuntu to run and debug your program on your target platform or simply to share media files on the network composed of Linux clients. If you are using Windows clients, you would usually use SAMBA/CIFS, although it is possible to setup an NFS server in Windows as well using Windows Services for UNIX 3.5.

Quick Guide to to setup an NFS server in Ubuntu without authentication.

Install the required packages:

# sudo apt-get install nfs-kernel-server nfs-common portmap

Reconfigure and restart portmap:

# sudo dpkg-reconfigure portmap
# sudo /etc/init.d/portmap restart

Edit /etc/exports:

# sudo vi /etc/exports

Add the directories to share with NFS and save the file, for example:

/nfs 192.168.1.0/24(rw,no_root_squash,async)

will give full read/write permissions to the nfs directory for computer in 192.168.1.0 subnet.

Restart the NFS server:

# sudo /etc/init.d/nfs-kernel-server restart

and reload the configuration:

# sudo exportfs -a

The installation is now complete.

To mount the NFS server (nfs directory) from another client (in /mnt/nfs), use the following command line:

# mount nfs_server_ip:/nfs /mnt/nfs

Share this:

Support CNX Software! Donate via cryptocurrencies, become a Patron on Patreon, or purchase goods on Amazon or Aliexpress

ROCK Pi 4C Plus
Subscribe
Notify of
guest
The comment form collects your name, email and content to allow us keep track of the comments placed on the website. Please read and accept our website Terms and Privacy Policy to post a comment.
4 Comments
oldest
newest
Khadas VIM4 SBC