Antsle Forum

Welcome to our Antsle community! This forum is to connect all Antsle users to post experiences, make user-generated content available for the entire community and more. 

Please note: This forum is about discussing one specific issue at a time. No generalizations. No judgments. Please check the Forum Rules before posting. If you have specific questions about your Antsle and expect a response from our team directly, please continue to use the appropriate channels (email: [email protected]) so every inquiry is tracked. 

Forum breadcrumbs - You are here:ForumGeneral: How-To GuidesSet antsleOS Time Zone
Please or Register to create posts and topics.

Set antsleOS Time Zone

You can set the antsleOS timezone by looking for your timezone in the directory  /usr/share/zoneinfo. (in the antsleOS).

SSH to the antsle's command line and list the zoneinfo directories

ls /usr/share/zoneinfo

 

Then list the zone files in the directory within your region name. I will use my timezone in this example.

ls /usr/share/zoneinfo/America

 

Update the timezone config file.

echo "America/LosAngeles" > /etc/timezone

 

And finally update the system timezone data with

emerge --config sys-libs/timezone-data

The above instructions are for edgeLinux version 0.x.x
For edgeLinux 2.x

Get current timezone setting

timedatectl
or
ll /etc/localtime

/etc/localtime should be a symlink to the zone data file.
Find your timezone with

timedatectl list-timezones

Set the timezone with

timedatectl set-timezone your_time_zone
timedatectl set-timezone America/New_York

lancem has reacted to this post.
lancem