Tagged articles
6 articles
Page 1 of 1
Open Source Linux
Open Source Linux
Jun 26, 2024 · Fundamentals

Mastering Linux Process Management: From Viewing to Scheduling

This guide explains Linux process fundamentals, how to view and trace process hierarchies with ps and pstree, terminate processes using kill, and schedule one-time or recurring tasks via at and crontab, providing command syntax, options, and practical examples.

Linux schedulingatcrontab
0 likes · 5 min read
Mastering Linux Process Management: From Viewing to Scheduling
Open Source Linux
Open Source Linux
Sep 22, 2022 · Operations

Master Linux Process Termination: kill, killall, and pkill Explained

Learn how to identify and terminate Linux processes using commands like kill, killall, and pkill, including signal options, PID retrieval methods, and practical examples for both foreground and background tasks, ensuring safe and effective process management on Unix-like systems.

Kill CommandLinuxkillall
0 likes · 6 min read
Master Linux Process Termination: kill, killall, and pkill Explained
Open Source Linux
Open Source Linux
Jun 23, 2022 · Operations

Why Ubuntu 22.04’s systemd-oomd Randomly Kills Apps and How to Fix It

Ubuntu 22.04 LTS enables systemd‑oomd by default, but many users report that it unexpectedly kills applications like Firefox, Chrome, and VS Code even without visible memory pressure; Canonical explains the termination conditions, highlights the swap‑size issue, and outlines planned fixes for the upcoming 22.04.1 release.

LinuxSwapUbuntu
0 likes · 4 min read
Why Ubuntu 22.04’s systemd-oomd Randomly Kills Apps and How to Fix It
Java Backend Technology
Java Backend Technology
May 9, 2021 · Backend Development

Why kill -9 Can Crash Your Spring Boot Service and How to Shut It Down Gracefully

This article explains the dangers of using the kill -9 command on Java services, illustrates how it can cause data loss, and presents several graceful shutdown techniques for Spring Boot—including SIGTERM, Actuator endpoints, custom Tomcat shutdown hooks, and @PreDestroy backups—complete with code examples and screenshots.

BackendGraceful ShutdownJava
0 likes · 19 min read
Why kill -9 Can Crash Your Spring Boot Service and How to Shut It Down Gracefully