FreeBSD Unix Show Mounted File Systems

To show mounted file systems in FreeBSD Unix, you can use the mount command. The mount command displays information about mounted file systems, including the file system type, mount point, and options. To view the list of mounted file systems, run the following command in the terminal: mount This will show a list of all … Read more

Ubuntu Linux 12.04/14.04 LTS Install Memcached Server For Python and PHP Apps

To install the Memcached server on Ubuntu Linux 12.04/14.04 LTS for Python and PHP applications, you can follow these steps: Update the package list: sudo apt-get update Install Memcached: sudo apt-get install memcached Install the Python Memcached library: sudo apt-get install python-memcache Install the PHP Memcached extension: sudo apt-get install php5-memcache Restart the Apache web … Read more

How To Mount a Remote Directory With SSHFS on a Linux

To mount a remote directory using SSHFS on a Linux system, follow these steps: Install the sshfs package, which provides support for mounting remote directories via SSH: sudo apt-get update sudo apt-get install sshfs Create a mount point for the remote directory, for example: sudo mkdir /mnt/remote Mount the remote directory using the sshfs command: … Read more

How To Patch and Protect OpenSSL Vulnerability # CVE-2015-0291 CVE-2015-0204 [ 19/March/2015 ]

To patch and protect against the OpenSSL vulnerabilities (CVE-2015-0291 and CVE-2015-0204) discovered in March 2015, you need to update to a version of OpenSSL that includes fixes for these vulnerabilities. The specific steps for updating OpenSSL depend on the operating system you’re using and the package manager you have installed. Here are the general steps … Read more

Debian/Ubuntu Linux: Find If Installed APT Package Includes a Fix/Patch Via CVE Number

To find if a package installed through APT on Debian/Ubuntu Linux includes a fix for a specific Common Vulnerabilities and Exposures (CVE) number, you can use the following steps: Update the package information database: sudo apt update Install the apt-show-versions package, which provides information about the installed versions of packages and the available upgrades: sudo … Read more