We have a list of numbers or strings, and we want to append items to a list. Basically, we can use the append method to achieve what we want. The append() method adds a single item to the existing list. It [...]
LINUX HOWTO
Horde vs Roundcube vs Squirrelmail - Which Works Best
Webmail is a great way to access your emails from different devices and when you are away from your home. Now, most web hosting companies include email with their server plans. And all of them offer the same three, webmail [...]
12 Best Web Browsers for Ubuntu
Selecting the best web browsers for Ubuntu largely depends on your personal needs, but usually, browsers are used for accessing/browsing websites. In this article, we will look under the hood and highlight some of the best web browsers for Ubuntu. 1) [...]
How to Fix 'add-apt-repository command not found' on Ubuntu & Debian
In some cases on Linux Mint, Linux Lite, Zorin OS, elementary OS and other Ubuntu based distros, as well as Ubuntu and Debian, you’ll see the error that add-apt-repository command is missing. $ sudo: add-apt-repository: command not found This tutorial [...]
Sticky Bit, SUID and SGID in Linux with Examples
In this article, we explain special permissions that work on files and directories named as Sticky bit, SUID and SGID. The sticky bit works on directories only. If a user wants to create or delete a file/directory in some directory, [...]
How to List Cron Jobs in Linux
For linux to automatically perform tasks that you would otherwise have to perform yourself, such as running scripts and executing specific commands, we use a tool called cron. On Linux systems, the cron utility is the preferred way to automate [...]
How to Get Size of Directory in Linux
In this article, we focus on how you can check the size of Directory on Linux Systems. This we are going to achieve using the command line interface. The command used to retrieve the file sizes is the du command, [...]
How to Rename Files in Linux
Renaming files in Linux is one of the easiest tasks that you can accomplish straight from the command line. There are quite a few ways you can achieve this and in this guide, I will take you through how you [...]
How to Find/Change Ubuntu Default Root Password
Before I explain how to change the default password, its good to know about "Root SuperUser" and "sudo user" in Linux. In any Linux, as also in any Ubuntu version, there is a SuperUser named root, the Windows equivalent of [...]
How to Delete Files and Directories in Linux
You may, in some cases, need to delete directories and files that you do not need to free up space on your hard drive. In this brief tutorial, you will learn how to delete files and directories in Linux. To [...]
How to Read a Filename with Spaces in Linux
It's not very common in Linux to handle filename with spaces but sometimes files copied or mounted from windows would end up with spaces. While it is not recommended to have file names with spaces, let discuss how to manage filename [...]
How to Install Terraform on CentOS 7/Ubuntu 18.04
Terraform is a software which allows you to manage cloud infrastructure resources from code efficiently. You can use Terraform to build, change, and version infrastructure deployed on proprietary cloud providers or your own infrastructure on premises. It supports cloud service [...]
How to Extract tar xz File in Linux
In this brief guide, we will look at how you can compress and extract tar xz tarball files/directories with a .tar.xz file extension in Linux. The xz format is a single-file compression format that is based on the LZMA2 algorithm. It [...]
How to Install pgAdmin4 on Ubuntu
pgAdmin4 is a feature-rich, cross-platform, web-based interface that allows you to administer and manage PostgreSQL database instances in a web browser. In this guide, you will learn how to install pgAdmin4 on Ubuntu 18.04 LTS. Read Also: How to Install Ubuntu 18.04 [...]