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

**This is an old revision of the document!** ----

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

====== Complementary Packages ====== ===== nfs-common ===== Out of the box, LMDE doesn't come with the ability to mount nfs shares across the network. When you try to issue a command like this in a terminal: <code> sudo mount -t nfs 192.168.10.200:/volume1/shared_directory /mnt/nfs-share </code> the system will output a warning saying: <code> mount: wrong fs type, bad option, bad superblock on 192.168.0.200:/volume2/Cube1TB, missing codepage or helper program, or other error (for several filesystems (e.g. nfs, cifs) you might need a /sbin/mount.<type> helper program) In some cases useful info is found in syslog - try dmesg | tail or so </code> ==== Install the nfs-common Package ==== The solution is quite straight forward, you simply need to install the nfs-common package by issuing the following commands: <code> sudo apt-get update sudo apt-get install nfs-common </code> ==== Mount an NFS Shared Directory ==== Once done, you'll need to create a directory where to mount the target nfs share and mount it using the mount command: <code> sudo mkdir /mnt/nfs-share sudo mount -t nfs 192.168.10.200:/volume1/shared_directory /mnt/nfs-share </code> ==== Automatic Mount at Boot Time ==== To have an nfs share automatically mounted at boot time, you need to edit the fstab on your system. <wrap todo>TO BE COMPLETED</wrap>