KVM (Kernel-based Virtual Machine) is an open-source virtualization technology built into the Linux kernel. With KVM to run multiple Linux or Windows guest virtual machines. Each guest is completely isolated from the others and has its own operating system and dedicated virtual hardware such as CPU(s), memory, network interfaces, and storage. This guide provides instructions
Make Linux Great Again
How to Install Nginx Web Server on Ubuntu 20.04
Nginx is an opensource, high-performance web server that commands a huge market share in production environments. It’s a lightweight and robust web server that is mostly used in hosting high-traffic websites. Related Read: How to Install Apache Web Server on Ubuntu 20.04 In this guide, you will learn how to install the Nginx web server
How to Force HTTPS using .htaccess
If you installed an SSL certificate for your domain, your next step should be to configure the application to serve all web traffic over HTTPS. Unlike HTTP, where requests and responses are sent and returned in plaintext, HTTPS uses TLS/SSL to encrypt the communication between the client and the server. There are several advantages of
How to Install Apache Web Server on Ubuntu 20.04
This guide will take you through the installation of the Apache webserver on Ubuntu 20.04. It includes managing the Apache2 services, open webserver port in the firewall, testing the Apache2 installation, and configuring a Virtual Host environment. Requirements: How to Install Ubuntu 20.04 Server Installing Apache2 in Ubuntu 20.04 1. First, log into your Ubuntu
How to Install TensorFlow on Ubuntu 20.04
TensorFlow is a free and open-source platform for machine learning built by Google. It is used by a number of organizations, including Twitter, PayPal, Intel, Lenovo, and Airbus. TensorFlow can be installed system-wide, in a Python virtual environment, as a Docker container, or with Anaconda. This tutorial explains how to install TensorFlow in a Python
How To Install Linux Mint 20 “Ulyana”
Linux Mint 20, code-named “Ulyana” is a long term support (LTS) release which will be supported until 2025. It comes in three desktop editions: Cinnamon, MATE, and Xfce. To learn more about Linux Mint 20 new features and improvements, see: Linux Mint 20 is Now Available to Download. In this article, you will learn how
How to Comment in Python
When writing Python code, it is always a good practice to make your code clean and easily understandable. Organizing the code, giving variables and functions descriptive names are several ways to do this. Another way to improve the readability of your code is to use comments. A comment is a human-readable explanation or annotation that