A PCRE internal error occured. This might be caused by a faulty plugin

====== Differences ====== This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
packages:nfs-common [2013/12/16 09:53]
admin [Automatic Mount at Boot Time]
packages:nfs-common [2013/12/16 10:01]
admin [Mount an NFS Shared Directory]
Line 28: Line 28:
 Once done, you'll need to create a directory where to mount the target nfs share and mount it using the mount command: Once done, you'll need to create a directory where to mount the target nfs share and mount it using the mount command:
 <​code>​ <​code>​
-sudo mkdir /​mnt/​nfs/​shared_directory+sudo mkdir -p /​mnt/​nfs/​shared_directory
 sudo mount -t nfs 192.168.10.200:/​volume1/​shared_directory /​mnt/​nfs/​shared_directory sudo mount -t nfs 192.168.10.200:/​volume1/​shared_directory /​mnt/​nfs/​shared_directory
 </​code>​ </​code>​
Line 60: Line 60:
 sudo mkdir -p /​mnt/​nfs/​Cube3TB /​mnt/​nfs/​Cube1TB sudo mkdir -p /​mnt/​nfs/​Cube3TB /​mnt/​nfs/​Cube1TB
 </​code>​ </​code>​
 +
 +Once your fstab is modified, you can test it is working as expected by issuing commands like:
 +<​code>​
 +sudo mount -a
 +ls -la /​mnt/​nfs/​Cube1TB
 +ls -la /​mnt/​nfs/​Cube3TB
 +</​code>​
 +
 +The ls command should show you the content of each nfs share. If it's empty, something is not working as expected.