Como dizer ao Ubuntu que o relógio de hardware é a hora local?

2

Como dizer ao Ubuntu que o relógio de hardware é a hora local?

Este comando não ajudou:

timedatectl set-local-rtc 1
    
por Dims 15.08.2017 / 19:40

1 resposta

4

Nas versões do Ubuntu que usam systemd o comando para alterar o tempo para local e atualizar o relógio imediatamente é

timedatectl set-local-rtc 1 --adjust-system-clock

Se você executar timedatectl , ele mostrará um aviso

Warning: The system is configured to read the RTC time in the local time zone.
         This mode can not be fully supported. It will create various problems
         with time zone changes and daylight saving time adjustments. The RTC
         time is never updated, it relies on external facilities to maintain it.
         If at all possible, use RTC in UTC by calling
         'timedatectl set-local-rtc 0'.

Esse aviso não significa que ele está definido como 0, ele sugere um comando para alterná-lo de volta para o RTC.

    
por Pilot6 15.08.2017 / 19:53