Author: Rahul

I, Rahul Kumar am the founder and chief editor of TecAdmin.net. I am a Red Hat Certified Engineer (RHCE) and working as an IT professional since 2009..

Linux is a popular open-source operating system that offers many tools to manage, compress, and decompress files. Compressed files help save storage space and make transferring data faster. They are very common in the Linux world. This guide will show you how to extract different types of compressed files in Linux. We will cover formats like Zip, Gz, Tar, Bz2, 7z, Xz, and Rar. 1. Unpacking ZIP Files ZIP files are very common. To work with ZIP files in Linux, you need the unzip command. If it’s not already on your system, you can install it. For example, on Ubuntu,…

Read More

Ubuntu, a popular open-source operating system based on Debian, offers a variety of customization options to suit your needs. One of these is the ability to change your screen’s resolution. The screen resolution determines how much information can be displayed on your screen. Higher resolutions mean more details and typically a sharper image, but it also means that items on the screen appear smaller. This guide will take you through the steps of changing the default screen resolution in Ubuntu. Change the Screen Resolution in Ubuntu A. Quick Instructions Open “Settings” Select “Displays” in the left sidebar Select the preferred…

Read More

Scripting languages are very important for system administration, and Bash (Bourne-Again SHell) is one of the most famous and widely used ones. Bash is a key part of Unix and Linux systems. It helps administrators and developers to interact with the system, automate tasks, manage files, and control processes. Bash is very powerful because of its special characters. These characters look simple but have unique functions that can make a Bash script much more powerful. They let you do complex things like chaining commands, redirecting input and output, running commands in the background, and more, all with just a few…

Read More

Linux, like any robust operating system, is built to handle various types of errors. One such error that often perplexes beginners and even intermediate users is a Segmentation Fault, colloquially referred to as ‘segfault.’ This article aims to provide a comprehensive understanding of segmentation faults and offer pragmatic troubleshooting measures to handle them effectively in a Linux environment. What Is a Segmentation Fault? A Segmentation Fault is an error that occurs when a running program attempts to access a memory location not allocated to it or tries to perform an operation not permitted in that particular memory segment. This illicit…

Read More

In the realm of Linux, the `tr` command is a vital tool that users can employ for text processing. TR, short for translate, is utilized to translate or delete characters from standard input, writing to standard output. It may seem simple on the surface, but the `tr` command offers a great depth of functionality. This article aims to guide you through the nuances of the `tr` command, providing practical examples along the way. Basics of TR Command The `tr` command is generally used in the following structure:

Here, set1 and set2 are character sets. The `tr` command replaces the…

Read More

Linux, the powerful open-source operating system, offers flexibility and customization opportunities that are often unattainable with other platforms. One area where this flexibility becomes particularly apparent is in managing environment variables. The `/etc/environment` file in Linux plays a pivotal role in this aspect. But what exactly is it, and how can it be used effectively? Let’s dive in. What is the /etc/environment file? Before we delve into the how, it’s crucial to understand what the `/etc/environment` file is. It is a system-wide configuration file in Linux that is read upon system boot. This file is utilized to set up environment…

Read More

The Linux environment is known for its strong structure, detailed control, and many useful tools. One interesting part is the /dev/null file. It may seem confusing, but it is important in Linux for managing processes. This article will explain what /dev/null is, its purpose, and how it is used in Linux. Understanding the Linux File System Before talking about /dev/null, it’s important to understand the Linux file system. In Linux, everything is treated as a file—hardware, directories, and even processes. This way, users and programs can interact with everything using simple commands like read, write, or delete. The /dev directory…

Read More

Bash, the Bourne-Again Shell, is a very flexible and powerful command language interpreter used in Unix and Unix-like operating systems. It can do many things, including handling date and time information. One useful task is getting yesterday’s date. This may seem simple, but it is very helpful in script writing and automation tasks. In this article, we’ll learn how to get yesterday’s date in Bash. We’ll start with basic Bash commands, learn about the date command, and finally, get yesterday’s date using Bash scripting. The date Command Before we get yesterday’s date, we need to understand the date command in…

Read More

In the world of system administration and shell scripting, handling dates and times is very important. Whether you’re scheduling tasks, rotating logs, or simply adding timestamps to files, knowing how to work with dates in your scripts can save you a lot of time and effort. Bash, the Bourne Again Shell, has powerful tools for this purpose. In this article, we’ll show you a simple example: how to get tomorrow’s date using Bash. There are several ways to do this, and we’ll go through a few examples using basic tools like date and GNU date. The Date Command in Bash…

Read More