How To Install and Setup Pi-Hole On Ubuntu and RaspberryPi?

How To Install and Setup Pi-Hole On Ubuntu and RaspberryPi?

Pi-Hole is a network-wide adblocking software that can be installed on Linux distributions like Ubuntu, RaspberryPi. Also, the Pi-Hole can be installed on Docker containers easily. The Pi-Hole is used as a DNS server and checks every DNS request and domain name if it is secure. If the requested domain name is not secure the … Read more

How To Unzip In Linux?

How To Unzip In Linux?

The zip compressions are one of the most popular compression formats and algorithms. Even its name has used the term as compression and generally called zipping or unzipping. The zip files can be extracted by unzipping them. Even there are different tools the unzip command is the most popular and regular way to unzip a … Read more

wget Command Tutorial with Examples

wget Command Tutorial with Examples

The wget command or tool is used to download and retrieve data from websites, FTP servers, etc. The wget is very popular in the open-source community as a download manager. The wget command can use different protocols to downloads files and data like HTTP, HTTPS, FTP, etc. The wget tool provides robustness, recursive download, non-interactiveness … Read more

Linux zip Command Tutorial with Examples

Linux zip Command Tutorial with Examples

Zip is a compression algorithm and format used to package given files and folders to use less disk space. The zip files have generally the *.zip extension and different tools that can be used to create, add, remove or extract zip files. But the most prolific tool and command is the zip command in Linux … Read more

“ip route add” – Add Route In Linux

"ip route add" - Add Route In Linux

Linux provides the ip route command in order to manage the routing table. The routing table is used to set routes for different destination IP addresses. Even there is a default route in most of the cases which are used to sent IP packets to the other networks we may need to add new routes … Read more

How To Check Free and Used Disk Space In Ubuntu?

How To Check Free and Used Disk Space In Ubuntu?

The disk is an important resource for Ubuntu distributions and servers. Especially SSD disks are more expensive than other mechanical disks. So it is important to check free and used disk space regularly and take required actions to empty unnecessary data. Ubuntu provides different ways, commands to check free and used disk space. In this … Read more

How To Unzip/Extract Gz File In Linux?

How To Unzip/Extract Gz File In Linux?

Gzip is a popular compression algorithm and tool used to compress files to reduce file sizes? The gzip compression is very popular in Linux and Unix-based operating systems and distributions. The gzip files generally have the *.gz or *.z extension. In this tutorial, we explain how to extract or unzip the gzip files by using … Read more

How To Add Comment To Dockerfile?

How To Add Comment To Dockerfile?

Dockerfile is used to configure docker images and specify commands to be executed before the image creation. Dockerfile contains instructions to read by the docker engine and executed properly. Even the Dockerfile may contain a lot of commands, configuration, etc. which should be explained and described for later use. Comments can be added into a … Read more