Detailed explanation of hwclock command

小老鼠
Release: 2024-05-01 01:33:23
Original
625 people have browsed it

hwclock Introduction

The hwclock command is used to set or read the system hardware clock. This clock is usually a battery-powered clock on the computer's motherboard.

Set the clock

To set the hardware clock, use the following syntax:

<code>hwclock --set --date="MMDDhhmm[[[[cc]yy]]]"</code>
Copy after login

Where:

  • --set: Specifies to set the clock.
  • --date: followed by the date and time to be set.
  • MM: Month (for example, 01 means January)
  • DD: Day (for example, 01 means 1st)
  • hh: Hours (for example, 01 means 1 o'clock)
  • mm: Minutes (for example, 01 means 1 minute)
  • cc: Century (for example, 20 for the 21st century)
  • yy: Year (for example, 20 for 2020)

For example, to To set the hardware clock to January 1, 2023, 12:00 AM, use the following command:

<code>hwclock --set --date="010100002023"</code>
Copy after login

Read Clock

To read the hardware clock, Just enter the following command:

<code>hwclock</code>
Copy after login

It will print the current clock value in your console.

Options

The hwclock command also provides the following options:

  • --localtime: Display time as local time.
  • --utc: Displays the time as Coordinated Universal Time (UTC).
  • --show: Only displays the current time and does not set anything.
  • --backup: Back up the current time to a file.
  • --restore: The time to restore the previous backup from the file.
  • --systohc: Synchronize the system clock to the hardware clock.
  • --hctoys: Synchronize the hardware clock to the system clock.

Example

To synchronize the hardware clock with the system clock, use the following command:

<code>hwclock --systohc</code>
Copy after login

To copy from file timebackup To restore the time of a previous backup, use the following command:

<code>hwclock --restore --file=/path/to/timebackup</code>
Copy after login

The above is the detailed content of Detailed explanation of hwclock command. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!