Disk Quota
| Limit | Value |
|---|---|
| Soft limit | 5 GB |
| Hard limit | 6 GB |
node_modules/, target/, .cache/, and similar directories in check.
CPU Limit
| Limit | Value |
|---|---|
| Max CPU | 200% (2 cores) |
Memory Limit
| Limit | Value |
|---|---|
| Max RAM | 1.5 GB |
Process Limits
| Limit | Value |
|---|---|
| Max tasks (processes + threads) | 200 |
nproc) and systemd cgroup.
/tmp Isolation
Your/tmp, /var/tmp, and /run/lock are private to your session via pam_namespace. Other users cannot see or access files you create there. This is per-login — a new SSH session gets a fresh namespace.
This means:
/tmp/myfilefrom your session is invisible to other users- Shared IPC via
/tmpacross users won’t work (use sockets in your home directory instead)
Persistent Sessions with tmux
SSH sessions end when you disconnect. Usetmux to keep processes running:
Process Accounting
The server runsacct (process accounting), which records every command executed by every user. Admins can review this with lastcomm and sa. This is a standard pubnix practice — be aware that your command history is logged at the system level.