8

How can one change the time-zone in Ubuntu 10.04 or 11.04 server from the command line without user input (e.g. tzconfig EST).

While one would use dpkg-reconfigure tzdata, per the related question How to change the time-zone settings from the command line, with user interaction, I can't seem to find out how to change the time-zone from within a non-interactive a script.

The solution is meant to be part of an installation script that configures a server.

Thank you for reading.

2 Answers2

13

Create a link to /etc/localtime

ln -sf /usr/share/zoneinfo/America/Los_Angeles /etc/localtime

Just replace /America/Los_Angeles with your zone.

wojox
  • 11,362
-2

Goto Systems > Administration > Time and Date.

Then press the padlock icon beside "Click to make changes", enter your password to authenticate, now you can change your Time Zone.

enter image description here

enter image description here

enter image description here

dsaint
  • 774
  • 7
    Nice pictures, but I think you have misread the question. Thank you for your post, albeit not answering the question. :) – Brian M. Hunt May 10 '11 at 01:23