Skip to content

Instantly share code, notes, and snippets.

@cristiancorreau
Created March 18, 2013 02:46
Show Gist options
  • Save cristiancorreau/5184641 to your computer and use it in GitHub Desktop.
Save cristiancorreau/5184641 to your computer and use it in GitHub Desktop.
Cambio de Hora de Servidor Linux en Chile
#!/bin/bash
echo "Actualizando timezone"
wget ftp://ftp.iana.org/tz/tzdata-latest.tar.gz
tar xvfz tzdata-latest.tar.gz
zic southamerica
sudo mv /etc/localtime /etc/localtime.old
sudo ln -s /usr/share/zoneinfo/America/Santiago /etc/localtime
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment