-
-
Notifications
You must be signed in to change notification settings - Fork 1
Linux uptime Guide
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to uptime on Linux, covering Arch Linux, CachyOS, and other distributions including system uptime, load averages, and system status.
Basic usage:
# Show system uptime
uptime
# Shows:
# - Current time
# - System uptime
# - Number of users
# - Load averagesJust uptime:
# Simple format
uptime -s
# -s = since (shows when system started)System status:
# Uptime output
uptime
# Example: "up 5 days, 3 hours, 15 minutes"Boot time:
# When system started
uptime -s
# Shows: "2024-01-15 10:30:00"System load:
# Load averages shown in uptime
uptime
# Shows: load average: 0.50, 0.75, 1.00
# 1 min, 5 min, 15 min averagesLoad interpretation:
# Load average meaning:
# - 1.00 = 100% CPU usage
# - 0.50 = 50% CPU usage
# - 2.00 = 200% (2 CPUs fully loaded)Human-readable:
# Pretty format
uptime -p
# -p = pretty (human-readable format)Version info:
# Version information
uptime -V
# -V = version (shows version)Check installation:
# uptime is part of procps
# Usually pre-installed
# Check uptime
which uptimeThis guide covered uptime usage, system uptime, and load averages for Arch Linux, CachyOS, and other distributions.
- System Monitoring - System monitoring
- htop Guide - Process monitoring
- top Guide - Resource monitoring
-
uptime Documentation:
man uptime
This guide covers Arch Linux, CachyOS, and other Linux distributions. For distribution-specific details, refer to your distribution's documentation.