How to Install and Configure Git on Ubuntu 20.04

GIT on Ubuntu Linux

Git is a widely used OpenSource version control system for software development. It has been initially developed by Linus Torvalds and is e.g. used to manage the source code of the Linux kernel. Any type of software project can be handled in an effective way by using GIT, often in conjunction with the free GIT … 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

Add and Manage User Accounts in Ubuntu 20.04 LTS

Manage user accounts in Ubuntu

User management becomes a critical consideration when you want to add multiple users to the system. If user management on your system is not effective, you may have to compromise security and access to the private and sensitive information on your system. This article introduces simple techniques you can use to have effective control over … Read more

How to execute a .run or .bin file in CentOS 8

CemtOS Execute Files

There are some files that we are downloaded from the internet that have extensions of .bin or .run. To run such files, we have to set the permission to execute those files. A .bin or .run file is a self-extracting binary file in Linux and Unix Operating systems. For example, Java and Flash are two … Read more

Getting the most out of Linux Bash history command

Bash history command

The Linux command line – the terminal – stores history of commands executed in the past by a user. This history is persistent and remains in memory even if we reboot our system. We can retrieve and reuse these stored commands to make the most of the history storage feature of the bash shell. The … Read more

How to Create a File in Linux Using Terminal

Createe files on Linux shell

As we all know, Linux is an operating system mainly used by geeks and developers, who are mostly keyboard people and like to write commands instead of using a graphical user interface (GUI). Unlike the Windows operating system, where most of the work is done with a few clicks, Linux has commands for everything, such … Read more