Do Math on Linux Command Line with expr command

Linux expr command

The Linux terminal (shell) allows you to perform mathematical calculations including addition, subtraction, multiplication, division, increment, and comparison of multiple numbers easily. This tutorial will show you various examples of basic mathematical calculations using expr command. I have performed all the commands and procedures on Debian 10, but the commands will work on any other … Read more

How to install Firefox Browser on Debian 10

Install Firefox Browser

Firefox is an open-source web browser developed by the Mozilla Corporation. It is the second most popular browser after Google Chrome. This tutorial demonstrates how to install Firefox on Debian 10 from its command line. There are different ways, but we will focus on installing a Firefox from the official Debian repository. Prerequisites You need … Read more

[Fixed] N: Repository ‘http://security.debian.org buster/updates InRelease’ changed its ‘Version’ value from ” to ’10’

You might get the following error message while executing the command apt-get update on Debian 10: N: Repository ‘http://security.debian.org buster/updates InRelease’ changed its ‘Version’ value from ” to ’10’ When this happens, execute the following command on the terminal. apt-get update –allow-releaseinfo-change Below is the sample output.  

How to set up an FTP Server on CentOS 8 using VSFTPD

CentOS VSFTPD

What is FTP? FTP (File Transfer Protocol) is a client-server network protocol that allows users to exchange files to and from remote computers. FTP uses plain text to transfer data and access data. There are several different open-source FTP servers available for the Linux operating system platform. The most commonly used FTP servers are VSFTPD, … Read more

How to install multiple Java versions on CentOS 8

CentOS Java Installation

Java is one of the most widely used high-level programming languages and was originally developed by Sun Microsystems.  It is used to create a complete application or systems that can run on a single computer system or in a distributed server environment. In addition, Java is also used to create a small application or applet … Read more

How to Write and Run a C program in Debian 10

Debian C-Programming

Debian and Linux are becoming more and more popular for software developers as an open-source and free operating system. In this article we will explain how to write, compile and run a simple C program in Debian. This will serve as a basis for you to move on to more complicated and useful C programs … Read more