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

====== Mount LVM Partitions ====== Sometimes you might need to access an LVM partition that resides on an disk but is not //automatically// mounted by the system. For example, hooking an external HDD or SSD that was formatted using LVM won't //automatically// mount (or even give you access) to the LVM partitions it contains. Of course you'll need the [[https://packages.debian.org/lvm2|LVM2 package]] installed (which should be the case on LMDE2). A full reference regarding this package can be accessed on [[https://wiki.debian.org/LVM|this page of the Debian wiki]]. ===== Check LVM is Installed ===== To check wether the lvm2 package is installed on your system, use: <Code:bash> > sudo apt-cache policy lvm2 lvm2: Installed: 2.02.111-2.2+deb8u1 Candidate: 2.02.111-2.2+deb8u1 Version table: *** 2.02.111-2.2+deb8u1 0 500 http://ftp.be.debian.org/debian/ jessie/main amd64 Packages 100 /var/lib/dpkg/status </Code> In case you get a line saying ''Installed: (none)'', you'll need to install the package, then start the service: <Code:bash> > sudo apt-get install lvm2 > /etc/init.d/lvm2 start </Code>