2026-04-02 23:12:36 +08:00

18 lines
266 B
Markdown

---
title: Ubuntu设置时区
createTime: 2023/06/24 18:55:29
tags:
- Ubuntu
categories:
- 随记
---
```bash
# 查看时区列表
timedatectl list-timezones | grep Shanghai
# 设置时区
sudo timedatectl set-timezone Asia/Shanghai
# 查看时间
date
```