Nfs File Share Xubuntu 18.04 Quick Start Guide
You are Welcome! The Tutorial Shows You Step-by-Step How to Setup Nfs File Share in Xubuntu 18.04 Bionic LTS GNU/Linux.
And with this SetUp You will be Able to Nfs Sharing Files on Xubuntu 18.04 Bionic to Local and Remote Clients.
Furthermore, this same Ubuntu File Sharing Setup will Works for a Network Composed of Debian/Ubuntu Based Systems.
Finally, “rpcbind” Package have Replaced the Old “portmap” and “nfs-kernel-server” Service the Precedent “nfs-common” one.

-
Server Side SetUp
- Open a Shell Session
Terminal Window on a Desktop
(Press “Enter” to Execute Commands) -
Install Required Packages
Login as SuperUser to Make Easier the Commands Execution:sudo su
Then Update the Repositories:
apt update
And Install Required Packages with:
apt install nfs-kernel-server rpcbind nfs-common
- Again
Make Configuration
-
Configure rpcbind
nano /etc/default/rpcbind
Append:
OPTIONS=""
Ctrl+x to Save & Exit from nano Editor.
Again:
nano /etc/hosts.allow
For Example on a Local Network:
portmap: 192.168.1.
To Find your Machine IP Address do:
ifconfig
In this Example Allow 192.168.1.0/24 to be Accessed on Network.
-
Configure idmapd
nano /etc/default/nfs-common
Inserts:
NEED_IDMAPD=YES
Then:
nano /etc/idmapd.conf
The Content should Correspond to:
[General] Verbosity = 0 Pipefs-Directory = /var/lib/nfs/rpc_pipefs Domain = localdomain [Mapping] Nobody-User = nobody Nobody-Group = nogroup
-
Configure NFS
nano /etc/exports
Append something Like:
/exports 192.168.1.0/255.255.255.0(rw,no_root_squash,no_subtree_check,crossmnt,fsid=0)
-
-
Now Make and Bind the Sharing Directories
mkdir -p /exports/home
Then to Bind Your home to /exports/home do:
cd /exports
mount --bind /home ./home
To have this SetUp Loaded on Boot Edit fstab:
nano /etc/fstab
Appending like in Example:
/home /exports/home none bind
-
StartUp server File Sharing over Network Services
/etc/init.d/nfs-kernel-server start
/etc/init.d/rpcbind start
- Open a Shell Session
-
Client Side SetUp
-
Open a Terminal Window
-
And Install Required Packages
sudo apt update
sudo apt install nfs-common rpcbind
-
How to Mount the Sharing Directories on the Client
-
So After this SetUp a Portion of Your Choice on the Ubuntu 18.04 Bionic File Sharing Server will be Shared with the Enabled Ubuntu/Debian Based Clients on Network.
Tags: File Share Xubuntu 18.04 Bionic, gnu/linux, Linux, Linux Tutorial, Mount Nfs Xubuntu 18.04, Mount Nfs Xubuntu Bionic, Nfs File Share Xubuntu 18.04, Nfs File Share Xubuntu Bionic, Nfs Xubuntu 18.04, Nfs Xubuntu Bionic, Xubuntu, Xubuntu 18.04 Bionic LTS, xubuntu linux