How to Activate Night Light on Ubuntu

In our daily routine, we use a lot of applications quite frequently. Almost all modern applications come with a Night Light feature that enables you to experience a warmer light at night to save your eyes from any additional strain. Moreover, some people also experience that their devices’ batteries are not drained that quickly when … Read more

How to Setup a Cron Job in Debian 12

Debian cron job

Crontab is an important Linux tool for scheduling tasks so that programs and scripts can be executed at a specific time. In this article, I will teach you how to schedule a job in Debian 12 and show you some examples. The same commands will work on older Debian versions, too. Prerequisites You need to … Read more

How to Set JAVA_HOME Path in Ubuntu 20.04 and Ubuntu 22.04

JAVA_HOME Path

Many Java-based programs require the Java Runtime Environment (JRE) to run smoothly regardless of the operating system. For development, most IDEs like Eclipse and NetBeans require the Java Development Kit (JDK) to be installed on your computer. Whether you’re a newbie who wants to learn how to develop or an application you have installed requires … Read more

How to find files on the Ubuntu command line

Find Files in Ubuntu

A typical problem when working with computers is that you can’t find the files you have stored somewhere. Many GUI programs allow you to search for files while working under Linux, regardless of the distribution. However, in some situations, you only have access to the command line terminal, especially if you manage servers or use … Read more

Linux Tar Command Explained with Examples

The tar command on Linux

The tar command in Linux is a powerful tool for archiving multiple files into a single file, known as a tarball. This tarball can also be compressed using various compression algorithms. The `tar` command is highly useful for backing up data, archiving files, and sharing a collection of files. Here are some common examples and … Read more

How to Shutdown or Reboot Debian 11

Debian 11 Shutdown or Reboot

In this guide, we will show you how you can reboot or shut down (power off) a Debian server or desktop from the command line (Terminal). Debian shutdown command The first step is that you open the Terminal, or connect to the system by SSH. Then you run the following command to shut down the … Read more

Manage Processes on Ubuntu Command-Line using htop

Ubuntu htop Command

In the world of operating systems, monitoring and managing system processes is crucial for maintaining performance and stability. While Windows users might be familiar with the Task Manager, Ubuntu offers a powerful alternative, the htop utility. This guide explores the htop utility in Ubuntu 22.04, detailing how to effectively monitor system processes, manage resource usage, … Read more