Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to change the time and timezone settings through adb shell. I have found out that i can change the time using

adb shell date -s YYYYMMDD.HHmmss

I however cannot find out how to change the timezone.

I have a device running on android 4.0.3

share|improve this question

1 Answer

Found this on stackover flow. Hope it helps:

I changed 2 files to change my timezone.

the one that i don't entire know if it's necessary, but it keeps things in sync:

/etc/timezone the more one you for sure need to change:

/etc/localtime from http://www.cyberciti.biz/faq/linux-unix-set-tz-environment-variable/ you can determine the name of the timezone you want with tzselect.

I took inspiration from http://www.cyberciti.biz/faq/howto-set-date-and-time-timezone-in-freebsd/ and copied my timezone file from /usr/share/zoneinfo/ to /etc/localtime.

/etc/timezone is a text file with the name of the timezone. so i just updated it to match the value provided by tzselect.

share|improve this answer
Yes, actually I also saw this but there doesnt seem to be files/directories named timezone or localtime under etc folder in my device. maybe this answer is for a different android version? – user1632765 Aug 29 '12 at 10:24
This answer is not for an Android device. This is generic Unix advice. – Dean Nov 7 '12 at 19:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.