Quickly check system uptime and load averages from the shell. 24.05.2026 | reading time: 2 min When he needs to know how long a Linux machine has been running and whether it is under load, the uptime command gives an immediate answer from the shell, delivering uptime, user count and three load averages in one short line. A Fast Example Try this on a shell to see uptime in action: ``` $ uptime 14:23:07 up 5 days, 3:12, 2 users, load average: 0.12, 0.34, 0.22 ``` Read Between the Numbers Uptime reports three load averages for 1, 5 and 15 minutes and a sensible interpretation compares those numbers to CPU cores, so a load average of 4.00 on a 4-core machine means the CPUs are fully utilized; use `uptime -p` for a pretty uptime string and `uptime -s` to show the boot time, and remember that uptime reads kernel-provided uptime information rather than estimating it from userland. Useful Companions To investigate further he can combine uptime with other tools, for example use `w` to see who is logged in and what they run, `who` to list logins and boot time, `top` or `htop` to inspect per-process CPU and memory usage, and `cat /proc/uptime` or `systemctl status` for low-level and service-centred views. Next Steps Start practicing uptime and its companions on real systems, then expand into monitoring and troubleshooting workflows; if he wants formal certification, consider CompTIA Linux+ or LPIC-1 and intensive exam preparation at bitsandbytes.academy. Join Bits & Bytes Academy First class LINUX exam preparation. utilities processes boot-process troubleshooting