NotePublic/Software/Applications/Hwclock/Hwclock_命令说明.md

30 lines
705 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Hwclock 命令说明
Linux 一共有两个时钟,分别是:
* 硬件时钟RTC=Real Time Clock指主机板上的时钟设备也就是通常可在 BIOS 画面设定的时钟。
* 系统时钟:指 kernel 中的时钟。
当 Linux 启动时,系统时钟会去读取硬件时钟的设定,之后系统时钟即独立运作。
hwclock 命令用于查看或同步硬件时钟。
## 参数说明
```bash
$ hwclock -h
-r,--show 查看硬件时间
-w,--systohc 将系统时钟写到硬件中
-s,--hctosys 将硬件时钟写到系统上
```
## 使用示例
```bash
# 显示 RTC 时间
hwclock
hwclock -r
# 将系统时钟写到硬件中
hwclock -w
```