Skip to the content
Skip to content
Top Menu
Sep 15, 2026
  • About Us
  • FAQ
  • Write For Us
  • Tech News
  • Facebook
  • Twitter
  • LinkedIn
  • Twitter
  • fa-youtube
Join to our facebook group
logo
  • Home
  • Linux
    • Distributions
      • RHEL-Centos
      • Rocky Linux
      • Ubuntu
    • LINUX COMMANDS
    • Shell Scripting
    • Cheat Sheets
      • Linux
      • Docker
    • Linux General
    • Linux Opinion
    • Troubleshooting
  • Enterprise Linux
  • Linux Interview Q & A
    • Linux Basics Q&A
    • Shell Scripting Q&A
      • Level 1: Beginner (0–1 Year)
    • Networking Q&A
  • Guides
    • Hosting
  • Linux Tips
Main Menu

LINUX COMMANDS

free a port in linux
LINUX COMMANDS

How to Free a Busy TCP/IP Port in Linux

Sep 14, 2026 Sep 14, 2026 - by aneeshya - Leave a Comment

A practical walkthrough of fuser, lsof, and ss for tracking down and killing whatever is blocking a port Knowing how to free a port in Linux comes down to one thing: finding whatever process is still holding it and telling it to let go. A "port already in use" error usually means an old process […]

Read More
pstree command in Linux
LINUX COMMANDS

How to use the pstree Command in Linux

Sep 08, 2026 Sep 08, 2026 - by sharon - Leave a Comment

pstree takes the flat, scrolling mess that ps gives you and turns it into an actual tree, showing which process spawned which. Instead of hunting through PIDs and PPIDs by hand, you see the parent-child chain laid out in front of you. pstree Command Syntax LinuxTeck COPY pstree [options] [pid | user] I first reached […]

Read More
xz compression in linux
LINUX COMMANDS

XZ Compression in Linux Made Easy

Aug 25, 2026 Aug 25, 2026 - by aneeshya - Leave a Comment

xz compression in Linux is one of the easiest ways to shrink large files without giving up much on speed. It's a command line tool that uses the LZMA2 algorithm, trading a bit of extra CPU time for noticeably smaller files than gzip, which is why you will see it used for kernel tarballs, distro […]

Read More
nmap command in linux
LINUX COMMANDS

Master nmap Command in Linux

Aug 25, 2026 Aug 25, 2026 - by aneeshya - Leave a Comment

The nmap command in Linux is the tool most admins reach for the moment they need to know what is actually alive and listening on a network. It scans hosts and ports, tells you what services are running, and can even guess the operating system on the other end. If you spend any time doing […]

Read More
absolute vs relative path example in Linux terminal
LINUX COMMANDS

Absolute vs Relative Path Made Easy

Aug 19, 2026 Aug 25, 2026 - by sharon - Leave a Comment

⛶ × Have you ever run cd reports successfully, only to get "No such file or directory" when you run the same command from another folder? The reason is simple: Linux handles absolute and relative paths differently. Once you understand how each one works, navigating the filesystem becomes much easier and path-related errors are easier […]

Read More
job control in linux jobs fg bg
LINUX COMMANDS

Job Control &, fg, bg, jobs

Aug 06, 2026 Aug 13, 2026 - by sharon - Leave a Comment

⛶ × When working in the Linux terminal, long-running commands don't have to keep your shell occupied. Linux job control allows you to pause, resume, move, and manage running processes without stopping them, making it easier to work efficiently from a single terminal session. In this guide, you'll learn how to use Linux job control […]

Read More
archiving and compression in linux example
LINUX COMMANDS

Learn Archiving and Compression in Linux like a Pro

Aug 05, 2026 Aug 13, 2026 - by aneeshya - Leave a Comment

⛶ × Linux offers several powerful tools for archiving and compressing files, but knowing which one to use isn't always obvious. This guide walks you through tar, gzip, bzip2, xz, and zip, explaining their differences with practical examples you can apply in everyday Linux administration. Quick Answer: This bundles the folder into a single archive […]

Read More
locate vs find command in linux comparison
LINUX COMMANDS

locate vs find command in Linux

Jul 31, 2026 Jul 31, 2026 - by aneeshya - Leave a Comment

⛶ × Many Linux beginners think locate and find do the same job, but the locate vs find command in Linux comparison comes down to one thing: locate searches a pre-built database for fast results, while find scans the filesystem in real time, making it slower but always up to date. Quick Answer: If you […]

Read More
ACL in Linux permissions diagram
LINUX COMMANDS

Access Control Lists (ACL) in Linux

Jul 24, 2026 Jul 24, 2026 - by sharon - Leave a Comment

⛶ × Access Control Lists let you give specific users or groups their own permissions on a file or directory, without touching the owner, the group, or everyone else. If you've ever needed one teammate to have write access while everyone else stays read-only, this is the tool for that. LinuxTeck COPY linuxteck@ubuntu:~$ setfacl -m […]

Read More
umask command in linux
LINUX COMMANDS

Learn the Umask Command in Linux

Jul 19, 2026 Jul 19, 2026 - by aneeshya - Leave a Comment

⛶ × Every file and directory created in Linux starts with a default set of permissions. Those permissions are determined by the umask value, which quietly plays an important role in both system security and day-to-day administration. In this guide, you'll learn how umask works, how to calculate it, and how to configure it correctly. […]

Read More
special permissions in Linux showing SUID SGID and sticky bit
LINUX COMMANDS

Special permissions SUID, SGID, Sticky bit

Jul 15, 2026 Jul 15, 2026 - by aneeshya - Leave a Comment

⛶ × Linux file permissions control who can read, write, and execute files, but some tasks require more than standard permissions. This is where special permissions such as SUID, SGID, and the sticky bit come into play. They provide controlled elevated access, simplify collaboration, and help protect shared directories when used correctly. If you've ever […]

Read More
chgrp command in linux example output
LINUX COMMANDS

chgrp Command In Linux Made Easy

Jul 13, 2026 Jul 13, 2026 - by sharon - Leave a Comment

⛶ × Managing file permissions is an essential Linux administration skill, and group ownership plays a major role when multiple users need access to the same files or directories. The chgrp command lets you change the group ownership of files and folders, making collaboration and permission management much easier. In this guide, you'll learn what […]

Read More
ss command in Linux example output
LINUX COMMANDS

ss Command in Linux made easy

Jul 12, 2026 Jul 12, 2026 - by sharon - Leave a Comment

⛶ × The ss command (Socket Statistics)in Linux is the modern Linux utility for viewing network sockets, active connections, listening ports, and the processes using them. Whether you're troubleshooting a service that won't start, checking open ports, or diagnosing network connectivity issues, ss provides the information quickly and efficiently. It has replaced netstat as the […]

Read More
chown command in linux example
LINUX COMMANDS

chown Command in Linux Made Simple

Jul 10, 2026 Jul 10, 2026 - by sharon - Leave a Comment

⛶ × In Linux, every file and directory has an owner and a group. These ownership settings help the system decide who can access, modify, or manage a file. When the wrong user or group owns a file, you may face problems such as permission errors, failed deployments, broken uploads, or services that cannot access […]

Read More
Linux PAM architecture diagram showing how a login request flows through the PAM API and modules
LINUX COMMANDS

Learn How Linux PAM Architecture Works

Jul 03, 2026 Jul 03, 2026 - by sharon - Leave a Comment

⛶ × Linux PAM (Pluggable Authentication Modules) is one of the most important parts of a Linux system. It controls how users are authenticated when they log in through SSH, use sudo, switch users with su, or access other PAM-enabled services. A small mistake in a PAM configuration file can prevent users from logging in, […]

Read More
batch command in linux
LINUX COMMANDS

Master the Batch Command in Linux Quickly

Jul 02, 2026 Jul 02, 2026 - by aneeshya - Leave a Comment

⛶ × The batch command is a useful Linux utility that lets you schedule a job to run only when the system is not busy. Instead of running a task immediately or at a fixed time, batch waits until the system load drops to a safe level before starting it. In this guide, you'll learn […]

Read More

Posts navigation

1 2 … 4 Next

Trending

  • How to Install & Access Cockpit on CentOS 8
  • Linux Printing Command Cheat Sheet
  • Linux 7.0-rc4 Lands Bigger Than Expected
  • How to Use htop Command in Linux (Best Commands and Examples)
  • 5 Bash Quoting Rules for Cleaner Scripts (Part 15 / 34)
  • Learn Linux User Management the Easy Way
  • chgrp Command In Linux Made Easy
  • Best Online Cron Job Tools for Linux
  • 16 basic cron command in Linux with Examples
  • How to Install Rocky Linux 9 {Step by Step} with Screenshots
  • Popular
  • Comments
  • Tags
install cockpit centos 7

How to Install & Access Cockpit on CentOS 8

Aug 02, 2020

Linux Printing Command Cheat Sheet

Linux Printing Command Cheat Sheet

Apr 10, 2023

Aneeshya SLearn Archiving and Compression in Linux like a Pro
muglLearn Archiving and Compression in Linux like a Pro
No tags to show

Google Add as a preferred
source on Google
  • Contact US
  • Privacy Policy
  • Terms of use
  • Affiliate Disclosure
  • Advertise
Copyright © 2026 LinuxTeck. All Rights Reserved.
Material from our website cannot be republished ONLINE or OFFLINE without our permission.
L