![]()
En mi computadora tengo un dualboot con sabayon y windows seven ya que por mis estudios dependo de los 2, un problemita que muchas veces me ha sucedido, al instalar una distro, olvido desactivar la opción de usar la hora UTC.
Para resolverlo, abren el siguiente archivo con su editor de texto, en mi caso nano.
nano /etc/conf.d/hwclock
el archivo contendrá algo como esto
# Set CLOCK to “UTC” if your Hardware Clock is set to UTC (also known as
# Greenwich Mean Time). If that clock is set to the local time, then
# set CLOCK to “local”. Note that if you dual boot with Windows, then
# you should set it to “local”.
clock=”UTC”# If you want to set the Hardware Clock to the current System Time
# (software clock) during shutdown, then say “YES” here.
# You normally don’t need to do this if you run a ntp daemon.
clock_systohc=”YES”# If you wish to pass any other arguments to hwclock during bootup,
# you may do so here. Alpha users may wish to use –arc or –srm here.
clock_args=”"
Cambiamos clock=”UTC” por clock=”local”
Guardamos, modificamos la hora y reiniciamos.

