85

When I go to change the date and time it doesn't work. I try to unlock but it just won't unlock. If there is any way to make it work please help.

I know it isn't very descriptive but I really would appreciate some answers.

Kevin Bowen
  • 19,395
  • 55
  • 76
  • 81
viaggio
  • 851
  • 1
  • 6
  • 3

7 Answers7

96

From man date

-s, --set=STRING
          set time described by STRING

To change date, use the command in terminal,

sudo date --set=STRING

For example, to change date to 25 Sep 2013 15:00, the command would be,

sudo date --set "25 Sep 2013 15:00:00"
sourav c.
  • 44,037
  • 20
  • 101
  • 128
kern
  • 1,419
  • 3
  • 13
  • 20
76

Try this:

sudo dpkg-reconfigure tzdata

This both lets you configure your timezone (you may just pick the same), and automagically synchronizes your time.

If there's no tzdata package, install it:

sudo apt-get update
sudo apt-get install tzdata
Nick Volynkin
  • 863
  • 8
  • 12
16

In 12.04 I don't have to Unlock anything. Just click on the clock on the top bar, and choose Time & Date Settings, once the Time & Date window opens, choose Manually, so you can change the time and date manually; otherwise choose your time zone from the map, and choose Automatic.

enter image description here

enter image description here

Mitch
  • 106,657
  • 24
  • 210
  • 268
  • 4
    I am not able to change my system's time this way. I can change the time from the settings but it is not reflecting on my top bar. – roopunk Jun 26 '14 at 10:50
  • 1
    It takes a while (+30 secs), but the top bar does update after sometime. (Ubuntu 14.04) – shxfee Oct 25 '14 at 19:37
  • You'll have to change the focus of the Date spinner control to have the date changed immediately. Very odd :) (Ubuntu 14.10) – Aram Paronikyan Mar 02 '15 at 14:03
  • 1
    None of these solutions work for me, am on 14.04 as well. – Tass May 27 '15 at 17:25
  • sometimes to reflect the settings changes you need to kill unity panel service and restart it. Click clock on the top bar, and choose Time & Date Settings once the Time & Date window opens choose Manually so you can change the time and date manually; otherwise choose your time zone from the map, and choose Automatically. Now to reflect changes instantly open terminal and type killall unity-panel-service – Gaurav Shukla Aug 20 '15 at 22:58
8

If you want to change the time zone only, refer to this:

Therefore

  1. Check Current Timezone Settings: $ timedatectl
  2. Show all Available Timezones: $ timedatectl list-timezones
  3. Change Timezone: $ sudo timedatectl set-timezone Europe/Berlin.
Manuel Jordan
  • 1,355
  • 4
  • 22
  • 39
wang.xueqiang
  • 911
  • 1
  • 9
  • 11
8

See this blog post for setting the date with a machine-friendly format string:

sudo date 120622432007.55

for December 6, 2007, 22:43:55,

and see this answer for setting the date with a human-friendly string:

sudo date --set "15 MAY 2011 1:40 PM"
WillC
  • 1,628
  • 14
  • 13
3

To change the date and time to a fixed value on an Ubuntu version using timesyncd, do the following.

Stop timesyncd:

sudo systemctl stop systemd-timesyncd

Set the date and/or time manually:

sudo timedatectl set-time 'YYYY-MM-DD'

Or:

sudo timedatectl set-time 'YYYY-MM-DD HH:MM:SS'

When you want to revert to the current time and date, run:

sudo systemctl start systemd-timesyncd
Artur Meinild
  • 21,605
  • 21
  • 56
  • 89
-1

I had similar issue on my install and the above command gave this error:

date: the argument '19 Sep 2014 20:11:00' lacks a leading '+';
when using an option to specify date(s), any non-option
argument must be a format string beginning with '+'
Try 'date --help'

Help shows -

Usage: date [option]...  [+FORMAT] - (etc)

Added the required plus as indicated to render +19 Sep 2014 20:11:00 which worked.

muru
  • 193,181
  • 53
  • 473
  • 722
shtlcdr
  • 11