How to Install Z-Shell (ZSH) and Oh-My-Zsh on Ubuntu 22.04

The Z shell is one of the most powerful shells ever developed, and it’s also one of the fastest. It offers features you won’t find anywhere else, such as built-in spell-checking, syntax highlighting for code, and much more. You can even configure the command prompt to display helpful information about your system status without having … Read more

How to Install XAMPP on your Ubuntu 22.04 LTS System

XAMPP stands for cross-platform(X), Apache(A) server, MariaDB(M), PHP(P), and Perl(P). It is built by Apache Friends and basically serves as a local host or a local server. Through this local server, you can install this software on your system and test the clients or your website before uploading it to the remote web server or … Read more

How to List Installed Packages on Ubuntu 22.04

How to list installed packages on Ubuntu

Knowing how many packages are installed on your computer is often essential. Often there are many packages installed on your computer that you do not even know about. Many of them are pre-installed when you do a fresh install of your operating system. You may want to see and list these packages. In this article, … Read more

How to Configure Networking on Ubuntu with Netplan

Ubuntu Network configuration with netplan

Netplan is the Ubuntu network configuration tool in all recent Ubuntu versions. Netplan is based on a YAML-based configuration system that simplifies the configuration process. It has replaced the old /etc/network/interfaces configuration file we used to configure network interfaces in Ubuntu and other Linux distributions. In this tutorial, you will learn how to configure networks … Read more

How to View System Log Files on Ubuntu

View System Log Files on Ubuntu Linux

A Linux Administrator should be able to read and understand the various types of messages generated by all Linux systems to troubleshoot an issue. These messages, named logs, are initiated by Linux and the applications running on it. Linux continuously creates, stores, and recycles these logs through various configuration files, programs, commands, and daemons. If … Read more

How to Install CMake on Ubuntu 22.04 LTS

Install Cmake on Ubuntu 22.04

CMake is an open-source, cross-platform family of tools designed to build, test, and package software. CMake is used to control the software compilation process using simple platform and compiler-independent configuration files, and generate native makefiles and workspaces that can be used in the compiler environment of your choice. Kitware created the suite of CMake tools … Read more