Search found 14 matches

by Murali Krishna
Sat Jun 13, 2026 2:03 pm
Forum: Performance & Troubleshooting
Topic: Linux Logging & Troubleshooting — journalctl, rsyslog, logrotate & Fixing Problems
Replies: 0
Views: 3

Linux Logging & Troubleshooting — journalctl, rsyslog, logrotate & Fixing Problems

Linux Logging & Troubleshooting — journalctl, rsyslog, logrotate & Fixing Problems
A clear, practical guide to reading logs and diagnosing services, boot and network issues, with copy-ready commands (AlmaLinux 9 / RHEL 9)

─────────────────────────────────────────

Logs are the system talking ...
by Murali Krishna
Sat Jun 13, 2026 1:26 pm
Forum: Linux Automation
Topic: Task Automation on Linux — cron, at & Shell Scripting Basics
Replies: 0
Views: 9

Task Automation on Linux — cron, at & Shell Scripting Basics

Task Automation on Linux — cron, at & Shell Scripting Basics
A clear, beginner-friendly guide to scheduling jobs and writing your first scripts, with copy-ready examples (AlmaLinux 9 / RHEL 9)

─────────────────────────────────────────

Why automate?
If you do a task more than twice by hand ...
by Murali Krishna
Sat Jun 13, 2026 1:20 pm
Forum: Linux Security
Topic: Linux Security — SELinux & Firewalld Explained Simply
Replies: 0
Views: 7

Linux Security — SELinux & Firewalld Explained Simply

Linux Security — SELinux & Firewalld Explained Simply
A clear, practical guide to enforcing modes, contexts, booleans, firewall zones and rich rules, with copy-ready commands (AlmaLinux 9 / RHEL 9)

─────────────────────────────────────────

Two guards stand between attackers and your server ...
by Murali Krishna
Sat Jun 13, 2026 1:14 pm
Forum: Linux Fundamentals
Topic: SSH Administration on Linux — Server, Keys, Hardening, SCP, SFTP & Tunneling
Replies: 0
Views: 12

SSH Administration on Linux — Server, Keys, Hardening, SCP, SFTP & Tunneling

SSH Administration on Linux — Server, Keys, Hardening, SCP, SFTP & Tunneling
A clear, practical guide to secure remote access and file transfer, with copy-ready commands (AlmaLinux 9 / RHEL 9)

─────────────────────────────────────────

What is SSH, in plain words?
SSH (Secure Shell) is an ...
by Murali Krishna
Sat Jun 13, 2026 11:32 am
Forum: Linux Fundamentals
Topic: Linux System Services with systemd — Services, Targets, Timers & Startup
Replies: 0
Views: 9

Linux System Services with systemd — Services, Targets, Timers & Startup

Linux System Services with systemd — Services, Targets, Timers & Startup
A clear, beginner-friendly guide to managing what runs on your system, with copy-ready commands (AlmaLinux 9 / RHEL 9)

─────────────────────────────────────────

What is systemd, in plain words?
systemd is the "manager ...
by Murali Krishna
Sat Jun 13, 2026 11:26 am
Forum: Linux Fundamentals
Topic: Linux Networking Made Simple — IP, CIDR, Subnetting, nmcli/nmtui, Routes, DNS & Troubleshooting
Replies: 0
Views: 5

Linux Networking Made Simple — IP, CIDR, Subnetting, nmcli/nmtui, Routes, DNS & Troubleshooting

Linux Networking Made Simple — IP, CIDR, Subnetting, nmcli/nmtui, Routes, DNS & Troubleshooting
A beginner-friendly guide explained in plain language, with real commands you can copy (AlmaLinux 9 / RHEL 9 — NetworkManager)

─────────────────────────────────────────

New to networking? Start ...
by Murali Krishna
Sat Jun 13, 2026 11:19 am
Forum: Linux Fundamentals
Topic: Swap Management on Linux — Create, Extend & Make Swap Persistent
Replies: 0
Views: 6

Swap Management on Linux — Create, Extend & Make Swap Persistent

Swap Management on Linux — Create, Extend & Make Swap Persistent
A complete hands-on guide — swap files, swap partitions and LVM swap, with tuning tips (AlmaLinux 9 / RHEL 9)

─────────────────────────────────────────

What is swap and why do you need it?
Swap is disk space the kernel uses ...
by Murali Krishna
Sat Jun 13, 2026 11:13 am
Forum: Linux Fundamentals
Topic: LVM on Linux — Physical Volumes, Volume Groups, Logical Volumes & Snapshots
Replies: 0
Views: 4

LVM on Linux — Physical Volumes, Volume Groups, Logical Volumes & Snapshots

LVM on Linux — Physical Volumes, Volume Groups, Logical Volumes & Snapshots
A complete hands-on guide — build, grow, shrink and snapshot storage without downtime (AlmaLinux 9 / RHEL 9)

─────────────────────────────────────────

Why bother with LVM instead of plain partitions?
Because raw ...
by Murali Krishna
Thu Jun 11, 2026 6:12 pm
Forum: Linux Fundamentals
Topic: Linux Storage Management
Replies: 0
Views: 18

Linux Storage Management

Linux Storage Management

MBR (Master Boot Record)

Older partitioning scheme.

Features:


Supports disks up to 2 TB
Maximum 4 primary partitions
Used by older systems


Check disk layout:


fdisk -l


GPT (GUID Partition Table)

Modern partitioning scheme.

Features:


Supports ...
by Murali Krishna
Thu Jun 11, 2026 6:10 pm
Forum: Linux Fundamentals
Topic: Linux Process Management
Replies: 0
Views: 12

Linux Process Management

Linux Process Management

ps

Used to view running processes.

Show all processes:


ps -ef


Example Output:


root 1 0 0 10:00 ? 00:00:01 systemd
apache 1200 1 0 10:05 ? 00:00:00 httpd


top

Real-time system and process monitor.

Start top:


top


Shows:


CPU usage
Memory usage ...