# timedatectl

## Force-syncing Linux time with a domain controller
I ran into the same issue [this person did](https://medium.com/@danieldantebarnes/fixing-the-kerberos-sessionerror-krb-ap-err-skew-clock-skew-too-great-issue-while-kerberoasting-b60b0fe20069) while Kerberoasting, and I had to force-sync my Linux VM to that of my target machine:

```
sudo timedatectl set-ntp off
rdate -n ip.of.the.domaincontroller
```
