# Time Synchronization

1. Search for your timezone

```
timedatectl list-timezones
```

2. Set your timezone

```
sudo timedatectl set-timezone America/Toronto
```

3. Enable `timesyncd`

```
sudo timedatectl set-ntp on
```

With this, time should be set and synchronized.

After this, run `timedatectl` to confirm the network time status. It may take a minute for the sync to happen, but eventually `System clock synchronized:` will read `yes` and `NTP service:` will show as `active`.
