๐ŸŽ New User? Get 20% off your first purchase with code NEWUSER20 ยท โšก Instant download ยท ๐Ÿ”’ Secure checkout Register Now โ†’
Menu

Categories

Linux Intermediate

What is Ulimit?

A command that sets or displays resource limits for user processes, such as maximum open files or memory usage.

Ulimit controls per-process resource limits. Common limits include open files (-n), maximum processes (-u), stack size (-s), and file size (-f). View current limits with ulimit -a.

Limits are set per session or permanently in /etc/security/limits.conf. Web servers and databases often need increased file descriptor limits (e.g., ulimit -n 65535) to handle many concurrent connections.

Related Terms

Symbolic Link
A special file that acts as a shortcut pointing to another file or directory in the filesystem.
Nohup
A command that runs a process immune to hangup signals, allowing it to continue after the terminal session ends.
AppArmor
A Linux security module that restricts program capabilities using per-application profiles, simpler to configure than SELinux.
LVM (Logical Volume Manager)
A storage management framework that provides flexible disk management through abstract layers of physical and logical volumes.
Journalctl
A command-line tool for querying and viewing logs collected by systemd's journal logging system.
Systemctl
The primary command for managing systemd services, including starting, stopping, enabling, and checking service status.
View All Linux Terms โ†’