Howto: Change timezone in Linux
If you get your web hosting services from foreign country and you might want to change the server time zone to your location in Linux server, use the following script.
To set your time zone to LA, US time zone, use the following command,
1 2 |
rm -f /etc/localtime ln -sf /usr/share/zoneinfo/America/Los_Angeles /etc/localtime |