4

I have an incorrect time in my Ubuntu server, I'm using Ubuntu Server 14.04

When I run date command this is the result:

lun  8 set 2014, 08.28.03, CEST

The correct hour is 10.40.

Teo
  • 390
  • 1
  • 4
  • 12

2 Answers2

5

This is what solved the issue for me:

check for all timezones, and find yours

timedatectl list-timezones

"America/New_York" matches my zone, so I ran this:

sudo timedatectl set-timezone America/New_York

...Then check the date

date

voilá

DavieFL
  • 51
1

Your hardware clock is probably set to UTC. To verify:
grep UTC /etc/default/rcS

This should give you something like:

# Set UTC=yes if your system clock is set to UTC (GMT), and UTC=no if not.
UTC=no

... with UTC being either yes or no. You probably need to configure this.

Read here how to setup ntpd to always have the correct time.

Jan
  • 12,931
  • 3
  • 34
  • 39