← All commands
Topic hub Networking
Windows Linux Networking

Windows net time / w32tm equivalent in Linux

Shows time synchronisation status and synchronises the system clock with an NTP time server.

Windows net time / w32tm
Linux equivalents
Debian/Ubuntu same command
timedatectl
Fedora same command
timedatectl
Arch same command
timedatectl

Overview

What this command does

Shows time synchronisation status and synchronises the system clock with an NTP time server.

Migration tip: Modern Linux uses systemd-timesyncd or chrony for automatic NTP sync. timedatectl shows whether sync is active and lets you set the timezone.

Practical tasks

Common use cases

View and sync system time via NTP

Shows time synchronisation status and synchronises the system clock with an NTP time server.

timedatectl

Show time, timezone, NTP status

timedatectl set-timezone Region/City

Change timezone

timedatectl set-ntp true

Enable automatic NTP sync

Ready to run

Copyable Linux commands

Review paths, device names, package names and permissions before running any command.

timedatectl
timedatectl set-timezone Europe/London
timedatectl set-ntp true
ntpq -p

Walkthrough

Examples with explanations

# Windows: net time /set  or  w32tm /resync
timedatectl                         # show current status
timedatectl set-timezone Europe/London
timedatectl set-ntp true

# NTP server details:
ntpq -p

Reference

Common options and variations

Command or optionUse
timedatectlShow time, timezone, NTP status
timedatectl set-timezone Region/CityChange timezone
timedatectl set-ntp trueEnable automatic NTP sync
ntpq -pShow NTP peers and sync status
chronyc trackingChrony sync status (if installed)

Distro differences

Debian/Ubuntu vs Fedora vs Arch

This command is the same on Debian/Ubuntu, Fedora and Arch Linux when the relevant tool is installed.

DistributionPackage manager / baseEquivalent commandDifference to notice
Debian/Ubuntu same command timedatectl Same command on this distribution.
Fedora same command timedatectl Same command on this distribution.
Arch same command timedatectl Same command on this distribution.

Keep learning

Related Networking commands