From 2a4df0dab4d2d21d21da684ffdcd5d1768b85b02 Mon Sep 17 00:00:00 2001 From: nils Date: Wed, 5 Jun 2024 10:32:46 +0200 Subject: [PATCH] Use UTC instead of localtime --- docs/alpine-desktop-setup/installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/alpine-desktop-setup/installation.md b/docs/alpine-desktop-setup/installation.md index cd77974..fc78875 100644 --- a/docs/alpine-desktop-setup/installation.md +++ b/docs/alpine-desktop-setup/installation.md @@ -41,10 +41,10 @@ The other setup scripts can be used to configure key aspects of the system. Besi > The root password does not really matter because it is going to be locked after a user has been created. -Set the `hwclock` to use `localtime` instead of `UTC` in `/etc/conf.d/hwclock`: +Set the `hwclock` to use `UTC` in `/etc/conf.d/hwclock` and disable writing the time to hardware. Running a NTP negates its usability. ``` -clock="local" +clock="UTC" clock_hctosys="NO" clock_systohc="NO" ```