-
-
Notifications
You must be signed in to change notification settings - Fork 1
Linux timedatectl Guide
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to timedatectl on Linux, covering Arch Linux, CachyOS, and other distributions including time management, timezone configuration, and system time control.
timedatectl controls system time and date (systemd).
Uses:
- View time: Show system time information
- Set timezone: Configure timezone
- Time synchronization: Control NTP
- System time: Manage system time
Why it matters:
- Time management: Manage system time
- Timezone: Configure timezone
- NTP control: Control time synchronization
Basic usage:
# View time status
timedatectl
# Shows time informationComplete info:
# All time information
timedatectl status
# Shows:
# - Local time
# - Universal time
# - RTC time
# - Time zone
# - NTP syncSet system time:
# Set time
sudo timedatectl set-time "2024-01-15 10:30:00"
# Sets system timeTime synchronization:
# Enable NTP
sudo timedatectl set-ntp true
# Enables automatic time syncChange timezone:
# Set timezone
sudo timedatectl set-timezone America/New_York
# Changes timezoneAvailable timezones:
# List timezones
timedatectl list-timezones
# Shows all available timezonesCheck systemd:
# timedatectl is part of systemd
# Usually pre-installed on systemd systems
# Check systemd
systemctl --versionThis guide covered timedatectl usage, time management, and timezone configuration for Arch Linux, CachyOS, and other distributions.
- Time Synchronization - Time sync guide
- System Configuration - System setup
-
timedatectl Documentation:
man timedatectl
This guide covers Arch Linux, CachyOS, and other Linux distributions. For distribution-specific details, refer to your distribution's documentation.