FreeBSD Install DJBDNS Server

To install the DJBdns server on FreeBSD, you can follow these steps: Update the FreeBSD package repository by running the following command: sudo pkg update Install the daemontools package, which provides the svscan command required to start the DJBdns service: sudo pkg install daemontools Download the latest version of DJBdns from the official website using … Read more

Varnish Change Web Server Signature Headers

To change the web server signature headers in Varnish, you can modify the VCL (Varnish Configuration Language) file used by Varnish. Here are the steps to follow: Open the VCL file in a text editor. On Ubuntu and Debian systems, the default VCL file is located at /etc/varnish/default.vcl. sudo nano /etc/varnish/default.vcl Add the following lines … Read more

HowTo: Find Python Version

To find out the version of Python installed on your system, you can use the python command in a terminal window. Here are the steps to follow: Open a terminal window on your system. Type the following command and press Enter: python –version This command will display the version of Python installed on your system. … Read more

Linux Restart Nginx WebServer Command

To restart the Nginx web server on a Linux system, you can use the systemctl command, which is the standard system and service manager used by most modern Linux distributions. Here are the steps to follow: Open a terminal window on your Linux machine. Type the following command to restart the Nginx service: sudo systemctl … Read more

Linux / UNIX: tar Command Stay In Local / File System When Creating Archive

To list or install only security updates in RHEL / CentOS using yum, you can use the yum-plugin-security package. Here are the steps to follow: Install the yum-plugin-security package by running the following command as the root user: yum install yum-plugin-security Once the package is installed, you can list all available security updates by running … Read more