Linuxhotel Wiki

Wie ging das nochmal?

Benutzer-Werkzeuge

Webseiten-Werkzeuge


lpi1:uhrzeit

Dies ist eine alte Version des Dokuments!


Systemuhr stellen

date

date --set "2006-03-26 01:59:30"

oder

date 032601592006

oder

ntpdate pool.ntp.org

Überprüfen:

date

systemd timedatectl

timedatectl set-time '2006-03-26 01:59:30'

1)

Überprüfen:

timedatectl

Hardwareuhr stellen

hwclock

Die Hardwareuhr auf UTC einstellen:

hwclock --systohc --utc 

Die Hardwareuhr auf lokale Zeit einstellen:

hwclock --systohc --localtime

Überprüfen:

hwclock --show

timedatectl

Die Hardwareuhr auf UTC einstellen:

timedatectl set-local-rtc 0

Die Hardwareuhr auf lokale Zeit einstellen:

timedatectl set-local-rtc 1

Überprüfen:

timedatectl status

Zeitzone einstellen

Systemweit

Welche Zeitzone ist eingestellt?

find /usr/share/zoneinfo/ -type f -exec md5sum {} \; | grep $(md5sum /etc/localtime | cut -d' ' -f1)

oder

date

oder

timedatectl status

Doku

man tzfile

Debian

Debian ab 3.1

tzconfig

Debian ab 5.0

dpkg-reconfigure tzdata

Mehr Informationen: http://www.debian.org/doc/manuals/system-administrator/ch-sysadmin-time.html

SuSE

/etc/sysconfig/clock :

HWCLOCK="-u"
TIMEZONE="Europe/Berlin"
DEFAULT_TIMEZONE="Europe/Berlin"

CentOS / RedHat (bis 6.0)

/etc/sysconfig/clock :

ZONE="Europe/Berlin"
UTC=true

Debian (?)

/etc/default/rcS :

UTC=yes

persönlich

1)
oder (ab systemd Version 213) Todo: stimmt das? /etc/systemd/timesyncd.conf :
[Time]
NTP=0.de.pool.ntp.org 1.de.pool.ntp.org 2.de.pool.ntp.org
FallbackNTP=0.pool.ntp.org 1.pool.ntp.org 2.pool.ntp.org
timedatectl set-ntp true
lpi1/uhrzeit.1439897918.txt.gz · Zuletzt geändert: 2015/08/18 11:38 von ingo_wichmann