Category Tutorials

Linux ping Command

PING (Packet INternet Groper) is a network administration utility used to check the connectivity status between a source and a destination computer/device over an IP network. It also helps you assess the time it takes to send and receive a…

Sudo Command in Linux/Unix

Power Up

When you use the sudo command for the first time, you see the message “With great power, comes great responsibility.” And rightly so. “Sudo” is short for Superuser Do. With this command, any user who has been granted permissions has…

How to Clear DNS Cache on Ubuntu 18.04

A DNS cache (sometimes called a DNS resolver cache) is a temporary database, maintained by a computer’s operating system, that contains records of all the recent visits and attempted visits to websites and other internet domains. You may want to…

Linux chmod Command

The chmod (change mode) command in Linux is used to change the access mode of a file, based on the type of user accessing the file and the type of permission associated with accessing the file. File Permissions and User…

The man command in Linux/Unix

Manual

When you buy a new home appliance, it is accompanied by a user manual that explains the functions of the appliance. Similarly, when you download and install a new package for Linux, the user manual for the program is automatically…

How to install CouchDB on Ubuntu 18.04

CouchDB is a free and open-source fault-tolerant database made and maintained by the Apache Software Foundation. It is a very good choice for a NoSQL type database, where you do not want a relational database. In this tutorial, we shall…

The uname and whoami commands in Linux

Uname And Whoami

The uname and whoami commands help you understand details like kernel version, name, hostname, etc of the Linux system you are using and what user is currently logged in. Simple yet useful, both the commands are very commonly used by…

Understanding Ubuntu’s hosts file

Ubuntu Hosts File

The hosts’ file is an extremely useful albeit small text file that stores host names with associated IP addresses. It is basically a mapping from hostnames to IP addresses. Any network protocol uses this mapping to convert hostnames to numeric…