Information
The freevxfs filesystem type is a free version of the Veritas type filesystem. This is the primary filesystem type for HP-UX operating systems.
Removing support for unneeded filesystem types reduces the local attack surface of the system. If this filesystem type is not needed, disable it.
Solution
Unload and disable the freevxfs kernel module.
- Run the following commands to unload the freevxfs kernel module:
# modprobe -r freevxfs 2>/dev/null
# rmmod freevxfs 2>/dev/null <xhtml:ol start="2"> - Perform the following to disable the freevxfs kernel module:
Create a file ending inconf with install freevxfs /bin/false in the /etc/modprobe.d/ directory.
Example:
# printf '%s\n' "" "install freevxfs /bin/false" >> /etc/modprobe.d/60-freevxfs.conf
Create a file ending inconf with blacklist freevxfs in the /etc/modprobe.d/ directory.
Example:
# printf '%s\n' "" "blacklist freevxfs" >> /etc/modprobe.d/60-freevxfs.conf