How to install X Window System XQuartz on macOS for ssh X11 forwarding

To install the X Window System XQuartz on macOS for ssh X11 forwarding, follow these steps: Download the XQuartz installer from the official website: https://www.xquartz.org/ Install XQuartz by double-clicking on the downloaded installer package and following the instructions. Once XQuartz is installed, log out and log back in to your macOS account to activate X11 … Read more

Bash Reissue And Repeat A Long Command Without Retyping It on a Linux, macOS & Unix

In Bash on Linux, macOS, and Unix, you can reissue and repeat a long command without retyping it by using the following methods: Using the up arrow key: Press the up arrow key to recall the previous command. You can scroll through previous commands using the up and down arrow keys. (https://www.beyondbeaute.com/) Once you have … Read more

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