Linux – Run an Application with a Different TimeZone

linuxtimezonewine

I have an windows application (Under Wine) that only works when I change timezone to NewYork's TimeZone.
with Any other zone it doesn't start!!
So, Is it possible in Linux to run an application with different TimeZone than system configured TimeZone?

I'm using Ubuntu 10.04

Best Answer

Generally, set the TZ environment variable:

TZ=America/New_York myapplication

I don't know if Wine has its own configuration in addition to or overriding the environment variable.

Related Question