How To Install GCC Compiler On Ubuntu?

How To Install GCC Compiler On Ubuntu?

GCC (GNU Compiler Collection) is a collection of tools used to compile different programming languages source code into binary, executables, or libraries. GCC supports a lot of programming languages like C, C++, Java, Objective-C, Go, Fortran, Ada, etc. A lot of open-source projects use the GCC to compile source code to binary. In this tutorial, … Read more

Run Cron Job Every Minute

Run Cron Job Every Minute

Linux provides the cron job for the jobs, tasks, or processes which should be run at the specified intervals. A cron job can be configured for different intervals like daily, weekly, every two days at the specified time, etc. One of the most used intervals is running a job every minute. Run Cron Job In … Read more

Linux $PATH Variable Tutorial

Linux $PATH Variable Tutorial

Linux provides the $PATH environment variable in order to store the paths or location of the binaries or executables. When a command or executable is called from the shell or application the $PATH environment variable is used to look up the locations. The $PATH variable stores multiple locations which are inspected for the specified command … Read more

Best Task Managers For Linux

Best Task Managers For Linux

Task Manager is a special tool used to list current running processes, RAM usage, Disk usage, Network usage, etc. Task managers are very important to monitor and detect system slowdowns etc. Linux provides a lot of task management tools that are more capable than the Windows Task Manager. In this tutorial, we will list and … Read more

How To Check Linux Memory Usage?

How To Check Linux Memory Usage?

Linux operating system manages and uses different system resources. The memory or RAM is one of the most important system resources where every running process, command, service, the job requires and uses some memory. So a typical system has a lot of processes and services it uses and manages a lot of memory. A typical … Read more

List Installed Packages In CentOS, RHEL, Fedora

List Installed Packages In CentOS, RHEL, Fedora

RPM-based Linux distributions like CentOS, RHEL, Fedora use the yum package manager in order to update, list, install and remove packages. Alternatively, the new command dnf is also adopted for these Linux distributions for package management. If we want to list installed packages in CentOS, RHEL or Fedora we can use yum or dnf commands. … Read more

How To Disable Screen Lock/Saver In GNOME Desktop(Ubuntu, Debian, CentOS, RHEL, Fedora?

How To Disable Screen Lock/Saver In GNOME Desktop(Ubuntu, Debian, CentOS, RHEL, Fedora?

Most of the modern operating systems provide the screen lock or screen saver for security reasons. Also, distributions like Ubuntu, Debian, CentOS, RHEL, Fedora provides the screen lock or screen saver by default. The screen saver term comes from the old times when the computer is not used some beautiful and interesting pictures are shown … Read more

Bash Exit Command and Exit Status

Bash Exit Command and Exit Status

Bash and bash scripts executed and terminated after execution. After the bash script execution is complete some information about the script is returned. This information is called exit status or exit code. The exit status or exit code can be also returned by using the exit command by using explicitly. Exit Status Every shell command … Read more