All public logs

Jump to navigation Jump to search

Combined display of all available logs of Omnia. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 03:31, 30 May 2026 Kenneth talk contribs created page Linux/Open Files (Created page with "List processes with most open files: lsof | awk '{print $1}' | sort | uniq -c | sort -rn | head -10 The "Too many open files" error occurs when a process or user reaches the upper limit of allocated file descriptors (FDs), which in Linux includes network sockets, pipes, and regular files. To resolve this, you need to identify the culprit process and then adjust either the user-level session limits or the system-wide limits. Check session limits: Run ulimit -Sn to chec...")