Search posts, tags and authors

Linux

7 posts from Linux See another: Devops, IT, HowTo
Understanding the ps aux Command in Linux
February 24, 2025 by kiril-urbonas in Linux

Understanding the ps aux Command in Linux

The ps aux command is one of the most commonly used commands in Linux for monitoring and managing system processes. It provides detailed information about all running processes, helping users diagnose performance issues, identify rogue processes, and analyze system activity. Breaking Down ps aux The command consists of three components:...

Understanding the Linux Kernel: The Heart of the Operating System
September 26, 2024 by kiril-urbonas in Linux

Understanding the Linux Kernel: The Heart of the Operating System

The Linux kernel is one of the most important components of the Linux operating system, acting as the core that manages hardware resources and provides essential services to user applications. In simple terms, it bridges the gap between hardware and software, ensuring efficient communication between the two. But what exactly...

Introduction to Controlling Linux Process Resources with Cgroups
September 26, 2024 by kiril-urbonas in Linux

Introduction to Controlling Linux Process Resources with Cgroups

Cgroups (control groups) are a Linux kernel feature that allows you to control and limit the resources (CPU, memory, I/O) that processes can use. This becomes crucial for system stability, especially when working with resource-hungry applications, containers, or virtual machines. How Cgroups Work Cgroups create hierarchical groups where processes...

How to Add a User to Sudoers
September 9, 2024 by kiril-urbonas in HowTo

How to Add a User to Sudoers

On Unix and Linux systems, the superuser account—commonly referred to as root, admin, or supervisor—holds the highest level of authority, allowing for unrestricted system-wide changes. This account is primarily used for critical administrative tasks, such as modifying file ownership or managing network ports. However, there are times when...

How to List Open Ports in Linux
September 8, 2024 by kiril-urbonas in HowTo

How to List Open Ports in Linux

To list open ports in Linux, you can use several commands depending on your needs. Here are some of the most common methods: 1. Using netstat netstat is a versatile tool for monitoring network connections. bashCopy codesudo netstat -tuln * -t: Show TCP ports. * -u: Show UDP ports. * -l: Show listening...

Spotlight Linux