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 want to change the timezone using adb shell command.

I went through some posts which allow changing it in linux, but they are not valid for android.

share|improve this question

2 Answers

For the list of tzdata values I go to http://en.wikipedia.org/wiki/List_of_tz_database_time_zones

To set the timezone use setprop persist.sys.timezone <TZ> command:

setprop persist.sys.timezone "America/Chicago"
share|improve this answer

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
I'm pretty sure you missed the part where the original post mentioned "Android". # cd /etc/timezone cd: can't cd to /etc/timezone # cd /etc/localtime cd: can't cd to /etc/localtime – Someone Somewhere Nov 6 '12 at 18:18
@SomeoneSomewhere, i think you need to re-read my post. /etc/timezone is a text file, so you can't cd to it. it's a file that needs to be edited. /etc/localtime is also a text file that needs to be edited. – ben_wing Nov 30 '12 at 18:45
@SomeoneSomewhere, I will also say that this was definitely on my Android device, which i had rooted. So, whether or not you're able to edit those files might be dependent on whether or not you've rooted your device. – ben_wing Nov 30 '12 at 19:05

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.