Answers:
就像只输入一个命令一样简单:
timedatectl set-timezone Zone/SubZone
用正确的数据替换Zone / SubZone的位置。您可以通过键入以下内容获取所有可用时区的列表:
timedatectl list-timezones
如果要使用本地时间设置RTC(硬件时钟),请运行以下命令:
timedatectl set-local-rtc 1
如果您更喜欢UTC的RTC,请使用以下一项:
timedatectl set-local-rtc 0
timedatectl status
。我建议将其设置为世界时(UTC),因为其他所有内容(包括您的本地时间!)都定义为UTC的偏移量。另请注意,这不仅适用于Arch Linux和XFCE。
我很惊讶这很简单,所以写了一个脚本:
tz-set Asia/Bangkok
或者,从列表中选择时区:
tz-set
以下脚本还更新了时区:
xfce4-panel
时钟小部件/etc/timezone
(timedatectl set-timezone
不更新/etc/timezone
)#!/bin/bash
set -euo pipefail
program=${0##*/} # basename $0
usage () {
>&2 printf 'Usage: %s [Region/City]\n' "$program"
>&2 printf 'Set the system timezone\n'
>&2 printf 'Will run tz-select to pick timezone if none given.\n'
}
# Process arguments
if [[ $# -gt 1 ]]; then # 0 or 1 arguments only
usage; exit 1
fi
if [[ $# -eq 0 ]]; then # no timezone given - prompt
timezone=$(tzselect)
else
timezone=$1 # in timedatactl verificaiton we trust
fi
sudo timedatectl set-timezone "$timezone"
# `timedatectl set-timezone` doesn't update `/etc/timezone`
# https://unix.stackexchange.com/q/451709/143394
<<<"$timezone" sudo tee /etc/timezone &> /dev/null
printf '\ntimedatectl says:\n'
timedatectl
# Update xfce4-panel clock
# https://unix.stackexchange.com/a/227405/143394
if property=$(xfconf-query -c xfce4-panel --list | grep timezone); then
if [[ $(wc -l <<<"$property") -eq 1 ]]; then # only one clock widget
xfconf-query -c xfce4-panel -p "$property" -s "$timezone"
printf '\nUpdated xfce4-panel clock timezone to: %s\n' "$timezone"
else
>&2 printf 'Not changing multiple xfce4-panel properties:\n%s\n' "$property"
fi
fi