Articles for author: ATB Team

ATB Team

How to Check Disk Space on Linux

Running low on disk space wondering how much disk space you have left on your Linux system? Whether you’re a Linux beginner or a seasoned pro, it’s important to understand how to manage your system’s storage effectively. Linux provides several simple commands to give you an overview of disk usage. we’ll show you easy ways ...

ATB Team

How to Count Files in a Directory on Linux

Need to know how many files are in a directory on Linux? Here are the simple and effective methods using commands like ls, find, and wc to quickly determine how many files are present in a directory. Whether you’re working with files of specific types or need to include subdirectories, you’ll find easy to follow ...

ATB Team

Malware vs. Virus What’s the Difference?

Malware vs Virus you are probably trying to figure out what the difference is between these two terms, which often get mixed up. Maybe you’ve heard them used a lot and want to know how they’re different or if they’re the same thing. It’s likely you’re either facing some kind of security issue on your ...

ATB Team

Port 21 – What is FTP?

Port 21 : FTP (File Transfer Protocol) is used to transfer files between a client and a server over a network, typically the internet. It uses port 21 for control connections and other ports for data transfer, depending on the mode (active or passive). FTP is insecure because it sends data, including login credentials, in ...

ATB Team

How to Kill a Process on Linux

So, you want to kill a process on Linux? No worries, let’s break it down. There are a few commands you can use for this, like kill, killall, pkill, and even xkill for GUI processes. First, to kill a process, you’ll need to find its process ID (PID). You can use commands like ps, top, ...

ATB Team

How to Unzip Files on Linux

To unzip files on Linux, you’ll usually use the unzip command. If it’s not already installed, you’ll need to install it first. Once it’s set up, you can easily extract .zip files using simple commands. There are also commands for handling other file types, like .tar.gz or .tar.bz2. If you’re not into command-line tools, you ...

ATB Team

How to Run a .sh File on Linux

To run a .sh file on Linux you first need to ensure it has execute permissions by using chmod +x filename.sh. After that, you can run the script in different ways: with ./filename.sh if it’s in the current directory, or by calling the interpreter directly with bash filename.sh or sh filename.sh. Make sure the script ...

ATB Team

How to Create a File on Linux

Create a File on Linux : You likely want to learn the easiest and most efficient way to create files on a Linux system. Whether you’re just getting started with Linux or need a quick refresher, you’re probably trying to figure out how to create a file for tasks like writing code, configuring system files, ...

ATB Team

How to Check RAM Usage on Linux

Checking RAM Usage on Linux, you are likely trying to figure out how to monitor how much of your computer’s memory is being used. Maybe you’re noticing your system is running slow, or you just want to keep track of your system’s performance. Whether you’re new to Linux or just want to dive deeper into ...

ATB Team

Port 8080: Everything You Need to Know About Its Uses, Protocols, and Security Tips

Introduction to Port 8080 Port 8080 is a commonly used alternative to the standard HTTP port 80, often seen in development, testing, and production environments. It’s particularly popular for web and application servers, like Tomcat and Jenkins, and is often used in corporate networks for services like proxies and caching. Due to its non-privileged nature, ...

ATB Team

10 Cool Linux Tricks To Boost Your Productivity

Linux is a powerful and flexible operating system that offers endless possibilities. Whether you are a beginner or an experienced user, there are always tricks and tips that can make your workflow smoother, your system more efficient, and your experience with Linux even better. In this blog post, we’ll go over 10 essential Linux tricks ...

ATB Team

How to Solve the Black Screen Issue on Ubuntu 22.04

The black screen can happen for several reasons, and it’s a pretty common issue after an update, driver changes, or hardware tweaks. If you’ve booted up Ubuntu 22.04 and are staring at a blank screen (or just the cursor), don’t worry there are several ways to fix it. 1. Check for Graphics Driver Issues If ...