Skip to main content

Command Palette

Search for a command to run...

How To Fix Windows and Linux Showing Different Times When Dual Booting

Published
1 min read
How To Fix Windows and Linux Showing Different Times When Dual Booting

Make Linux Use Local time

By Default Windows looks time store in local time while Linux assumes time is stored in UTC time. This step work in Ubuntu, Fedora, Red Hat, Debian, Mint and other Linux Distributin that uses systemd.

  • First open the terminal by using CTRL + ALT + T

  • To Make Linux Store Time in Local Storage

    timedatectl set-local-rtc 1 --adjust-system-clock
    
  • To Check your current settings, run:

    timedatectl
    

timedelta.png

  • To Undo the above changes, run:
    timedatectl set-local-rtc 0 --adjust-system-clock