Change and verify the system timezone from the command line in seconds. 08.02.2026 | reading time: 2 min Need to change the system timezone immediately? This short guide shows how to use `timedatectl` to list, set and verify the timezone from the command line so the change takes effect for logs, cron and systemd timers. Hands-on: set Europe/Berlin now First inspect available zones and current settings, then set a new zone and verify the result; example session: ```bash $ timedatectl list-timezones | grep Berlin Europe/Berlin $ timedatectl Local time: 2026-02-08 10:12:34 UTC Universal time: 2026-02-08 10:12:34 UTC Time zone: Etc/UTC (UTC, +0000) System clock synchronized: yes NTP service: active $ sudo timedatectl set-timezone Europe/Berlin $ timedatectl | grep "Time zone" Time zone: Europe/Berlin (CET, +0100) ``` What changes under the hood `timedatectl` usually replaces the `/etc/localtime` link to the appropriate zoneinfo file and updates systemd's notion of the zone; the system clock remains in UTC unless you change the RTC mode, so check `hwclock` if you maintain a local RTC and remember root privileges are required for changes. When timedatectl is not enough On minimal containers without systemd `timedatectl` may be unavailable; you can create or update the `/etc/localtime` symlink manually, use `dpkg-reconfigure tzdata` on Debian/Ubuntu for an interactive flow, or `tzselect` for a temporary session-based selection. Quick reminders and cautions Changing the timezone affects displayed time for logs, cron jobs and systemd timers instantly; audit scheduled tasks after a change, avoid flipping the RTC mode without coordination, and prefer `timedatectl` on systemd hosts to keep things clean. Next step for serious admins Mastering small operational tasks like timezone management is part of broader Linux competence; keep practicing, explore automation scripts that set timezones during provisioning, and consider formal certification to validate skills at bitsandbytes.academy for CompTIA Linux+ or LPIC-1 exam preparation. Join Bits & Bytes Academy First class LINUX exam preparation. setup utilities scripting infrastructure troubleshooting