По умолчанию в Bios должно стоять не "нормальное время", а Гринвическое Мировое время. Для местного времени в BIOS надо отменить
UTC, но тогда не будет работать автоматический переход на летнее/зимнее время
1 /etc/timezone должена указывать на местный часовой пояс, напр. Europe/Kiev (или быть копией этого файла)
2 cat /etc/sysconfig/clock
Цитата:
# Whether Hardware Clock should be set to system time
# at reboot/halt/poweroff.
HWCLOCK_SET_AT_HALT=true
# Whether to add or subtract time from the Hardware Clock
# at startup to accyjount for systematic drift since the
# last time the clock was set or adjusted at startup.
HWCLOCK_ADJUST=true
# UTC=true indicates that the clock is set to UTC;
# anything else indicates that it is set to local time.
UTC="false"
# ARC=true on alpha only indicates the ARC console's
# 42-year time offset is in effect; otherwise the normal
# Unix epoch is assumed.
#ARC=false
# ZONE="filename" indicates the zonefile under /usr/share/zoneinfo
# that /etc/localtime is a copy of, for example:
#ZONE="Europe/Moscow"
ZONE="Europe/Kiev"
|