电脑win7时间设置

发布时间: 2023-04-16 21:27 阅读: 文章来源:转载

hwclock是每个从事Linux必备的指令之一,尤其是Linux SA和Linux SRE,或者公司的 DevOPS,是必知必会的核心指令之一,如下为帮助手册。

HWCLOCK(8)System AdministrationHWCLOCK(8)NAMEhwclock - time clocks utilitySYNOPSIShwclock [function] [option...]DESCRIPTIONhwclock is an administration tool for the time clocks. It can: display the Hardware Clock time; set theHardware Clock to a specified time; set the Hardware Clock from the System Clock; set the System Clock from theHardware Clock; compensate for Hardware Clock drift; correct the System Clock timescale; set the kernel’stimezone, NTP timescale, and epoch (Alpha only); and predict future Hardware Clock values based on its driftrate.Since v2.26 important changes were made to the --hctosys function and the --directisa option, and a new option--update-drift was added. See their respective descriptions below.FUNCTIONSThe following functions are mutually exclusive, only one can be given at a time. If none is given, the defaultis --show.-a, --adjustAdd or subtract time from the Hardware Clock to account for systematic drift since the last time the clockwas set or adjusted. See the discussion below, under The Adjust Function.--getepoch; --setepochThese functions are for Alpha machines only, and are only available through the Linux kernel RTC driver.They are used to read and set the kernel’s Hardware Clock epoch value. Epoch is the number of years into ADto which a zero year value in the Hardware Clock refers. For example, if the machine’s BIOS sets the yearcounter in the Hardware Clock to contain the number of full years since 1952, then the kernel’s HardwareClock epoch value must be 1952.The --setepoch function requires using the --epoch option to specify the year. For example:hwclock --setepoch --epoch=1952The RTC driver attempts to guess the correct epoch value, so setting it may not be required.This epoch value is used whenever hwclock reads or sets the Hardware Clock on an Alpha machine. For ISAmachines the kernel uses the fixed Hardware Clock epoch of 1900.--predictPredict what the Hardware Clock will read in the future based upon the time given by the --date option andthe information in /etc/adjtime. This is useful, for example, to account for drift when setting a HardwareClock wakeup (aka alarm). See rtcwake(8).Do not use this function if the Hardware Clock is being modified by anything other than the currentoperating system’s hwclock command, such as ‘11 minute mode‘ or from dual-booting another OS.-r, --show; --getRead the Hardware Clock and print its time to standard output in the ISO 8601 format. The time shown isalways in local time, even if you keep your Hardware Clock in UTC. See the --localtime option.Showing the Hardware Clock time is the default when no function is specified.The --get function also applies drift correction to the time read, based upon the information in/etc/adjtime. Do not use this function if the Hardware Clock is being modified by anything other than thecurrent operating system’s hwclock command, such as ‘11 minute mode‘ or from dual-booting another OS.-s, --hctosysSet the System Clock from the Hardware Clock. The time read from the Hardware Clock is compensated toaccount for systematic drift before using it to set the System Clock. See the discussion below, under TheAdjust Function.The System Clock must be kept in the UTC timescale for date-time applications to work correctly inconjunction with the timezone configured for the system. If the Hardware Clock is kept in local time thenthe time read from it must be shifted to the UTC timescale before using it to set the System Clock. The--hctosys function does this based upon the information in the /etc/adjtime file or the command linearguments --localtime and --utc. Note: no daylight saving adjustment is made. See the discussion below,under LOCAL vs UTC.The kernel also keeps a timezone value, the --hctosys function sets it to the timezone configured for thesystem. The system timezone is configured by the TZ environment variable or the /etc/localtime file, astzset(3) would interpret them. The obsolete tz_dsttime field of the kernel’s timezone value is set to zero.(For details on what this field used to mean, see settimeofday(2).)When used in a startup script, making the --hctosys function the first caller of settimeofday(2) from boot,it will set the NTP ‘11 minute mode‘ timescale via the persistent_clock_is_local kernel variable. If theHardware Clock’s timescale configuration is changed then a reboot is required to inform the kernel. See thediscussion below, under Automatic Hardware Clock Synchronization by the Kernel.This is a good function to use in one of the system startup scripts before the file systems are mountedread/write.This function should never be used on a running system. Jumping system time will cause problems, such ascorrupted filesystem timestamps. Also, if something has changed the Hardware Clock, like NTP’s ‘11 minutemode‘, then --hctosys will set the time incorrectly by including drift compensation.Drift compensation can be inhibited by setting the drift factor in /etc/adjtime to zero. This setting willbe persistent as long as the --update-drift option is not used with --systohc at shutdown (or anywhereelse). Another way to inhibit this is by using the --noadjfile option when calling the --hctosys function.A third method is to delete the /etc/adjtime file. Hwclock will then default to using the UTC timescale forthe Hardware Clock. If the Hardware Clock is ticking local time it will need to be defined in the file.This can be done by calling hwclock --localtime --adjust; when the file is not present this command willnot actually adjust the Clock, but it will create the file with local time configured, and a drift factorof zero.A condition under which inhibiting hwclock‘s drift correction may be desired is when dual-booting multipleoperating systems. If while this instance of Linux is stopped, another OS changes the Hardware Clock’svalue, then when this instance is started again the drift correction applied will be incorrect.For hwclock‘s drift correction to work properly it is imperative that nothing changes the Hardware Clockwhile its Linux instance is not running.--setSet the Hardware Clock to the time given by the --date option, and update the timestamps in /etc/adjtime.With the --update-drift option also (re)calculate the drift factor. Try it without the option if --setfails. See --update-drift below.--systzThis is an alternate to the --hctosys function that does not read the Hardware Clock nor set the SystemClock; consequently there is not any drift correction. It is intended to be used in a startup script onsystems with kernels above version 2.6 where you know the System Clock has been set from the Hardware Clockby the kernel during boot.It does the following things that are detailed above in the --hctosys function:•Corrects the System Clock timescale to UTC as needed. Only instead of accomplishing this by setting theSystem Clock, hwclock simply informs the kernel and it handles the change.•Sets the kernel’s NTP ‘11 minute mode‘ timescale.•Sets the kernel’s timezone.The first two are only available on the first call of settimeofday(2) after boot. Consequently this option onlymakes sense when used in a startup script. If the Hardware Clocks timescale configuration is changed then areboot would be required to inform the kernel.-w, --systohcSet the Hardware Clock from the System Clock, and update the timestamps in /etc/adjtime. With the--update-drift option also (re)calculate the drift factor. Try it without the option if --systohc fails.See --update-drift below.-V, --versionDisplay version information and exit.-h, --helpDisplay help text and exit.OPTIONS--adjfile=filenameOverride the default /etc/adjtime file path.--date=date_stringThis option must be used with the --set or --predict functions, otherwise it is ignored.hwclock --set --date=‘16:45‘hwclock --predict --date=‘2525-08-14 07:11:05‘The argument must be in local time, even if you keep your Hardware Clock in UTC. See the --localtimeoption. Therefore, the argument should not include any timezone information. It also should not be arelative time like "+5 minutes", because hwclock‘s precision depends upon correlation between theargument’s value and when the enter key is pressed. Fractional seconds are silently dropped. This option iscapable of understanding many time and date formats, but the previous parameters should be observed.--delay=secondsThis option can be used to overwrite the internally used delay when setting the clock time. The default is0.5 (500ms) for rtc_cmos, for another RTC types the delay is 0. If RTC type is impossible to determine(from sysfs) then it defaults also to 0.5 to be backwardly compatible.The 500ms default is based on commonly used MC146818A-compatible (x86) hardware clock. This Hardware Clockcan only be set to any integer time plus one half second. The integer time is required because there is nointerface to set or get a fractional second. The additional half second delay is because the Hardware Clockupdates to the following second precisely 500 ms after setting the new time. Unfortunately, this behavioris hardware specific and in same cases another delay is required.-D, --debugUse --verbose. The --debug option has been deprecated and may be repurposed or removed in a future release.--directisaThis option is meaningful for ISA compatible machines in the x86 and x86_64 family. For other machines, ithas no effect. This option tells hwclock to use explicit I/O instructions to access the Hardware Clock.Without this option, hwclock will use the rtc device file, which it assumes to be driven by the Linux RTCdevice driver. As of v2.26 it will no longer automatically use directisa when the rtc driver isunavailable; this was causing an unsafe condition that could allow two processes to access the HardwareClock at the same time. Direct hardware access from userspace should only be used for testing,troubleshooting, and as a last resort when all other methods fail. See the --rtc option.--epoch=yearThis option is required when using the --setepoch function. The minimum year value is 1900. The maximum issystem dependent (ULONG_MAX - 1).-f, --rtc=filenameOverride hwclock‘s default rtc device file name. Otherwise it will use the first one found in this order:/dev/rtc0, /dev/rtc, /dev/misc/rtc. For IA-64: /dev/efirtc /dev/misc/efirtc-l, --localtime; -u, --utcIndicate which timescale the Hardware Clock is set to.The Hardware Clock may be configured to use either the UTC or the local timescale, but nothing in the clockitself says which alternative is being used. The --localtime or --utc options give this information to thehwclock command. If you specify the wrong one (or specify neither and take a wrong default), both settingand reading the Hardware Clock will be incorrect.If you specify neither --utc nor --localtime then the one last given with a set function (--set, --systohc,or --adjust), as recorded in /etc/adjtime, will be used. If the adjtime file doesn’t exist, the default isUTC.Note: daylight saving time changes may be inconsistent when the Hardware Clock is kept in local time. Seethe discussion below, under LOCAL vs UTC.--noadjfileDisable the facilities provided by /etc/adjtime. hwclock will not read nor write to that file with thisoption. Either --utc or --localtime must be specified when using this option.--testDo not actually change anything on the system, that is, the Clocks or /etc/adjtime (--verbose is implicitwith this option).--update-driftUpdate the Hardware Clock’s drift factor in /etc/adjtime. It can only be used with --set or --systohc.A minimum four hour period between settings is required. This is to avoid invalid calculations. The longerthe period, the more precise the resulting drift factor will be.This option was added in v2.26, because it is typical for systems to call hwclock --systohc at shutdown;with the old behavior this would automatically (re)calculate the drift factor which caused severalproblems:•When using NTP with an ‘11 minute mode‘ kernel the drift factor would be clobbered to near zero.•It would not allow the use of ‘cold‘ drift correction. With most configurations using ‘cold‘ drift willyield favorable results. Cold, means when the machine is turned off which can have a significant impacton the drift factor.•(Re)calculating drift factor on every shutdown delivers suboptimal results. For example, if ephemeralconditions cause the machine to be abnormally hot the drift factor calculation would be out of range.•Significantly increased system shutdown times (as of v2.31 when not using --update-drift the RTC is notread).Having hwclock calculate the drift factor is a good starting point, but for optimal results it will likely needto be adjusted by directly editing the /etc/adjtime file. For most configurations once a machine’s optimaldrift factor is crafted it should not need to be changed. Therefore, the old behavior to automatically(re)calculate drift was changed and now requires this option to be used. See the discussion below, under TheAdjust Function.This option requires reading the Hardware Clock before setting it. If it cannot be read, then this option willcause the set functions to fail. This can happen, for example, if the Hardware Clock is corrupted by a powerfailure. In that case, the clock must first be set without this option. Despite it not working, the resultingdrift correction factor would be invalid anyway.-v, --verboseDisplay more details about what hwclock is doing internally.NOTESClocks in a Linux SystemThere are two types of date-time clocks:The Hardware Clock: This clock is an independent hardware device, with its own power domain (battery,capacitor, etc), that operates when the machine is powered off, or even unplugged.On an ISA compatible system, this clock is specified as part of the ISA standard. A control program can read orset this clock only to a whole second, but it can also detect the edges of the 1 second clock ticks, so theclock actually has virtually infinite precision.This clock is commonly called the hardware clock, the real time clock, the RTC, the BIOS clock, and the CMOSclock. Hardware Clock, in its capitalized form, was coined for use by hwclock. The Linux kernel also refers toit as the persistent clock.Some non-ISA systems have a few real time clocks with only one of them having its own power domain. A very lowpower external I2C or SPI clock chip might be used with a backup battery as the hardware clock to initialize amore functional integrated real-time clock which is used for most other purposes.The System Clock: This clock is part of the Linux kernel and is driven by a timer interrupt. (On an ISAmachine, the timer interrupt is part of the ISA standard.) It has meaning only while Linux is running on themachine. The System Time is the number of seconds since 00:00:00 January 1, 1970 UTC (or more succinctly, thenumber of seconds since 1969 UTC). The System Time is not an integer, though. It has virtually infiniteprecision.The System Time is the time that matters. The Hardware Clock’s basic purpose is to keep time when Linux is notrunning so that the System Clock can be initialized from it at boot. Note that in DOS, for which ISA wasdesigned, the Hardware Clock is the only real time clock.It is important that the System Time not have any discontinuities such as would happen if you used the date(1)program to set it while the system is running. You can, however, do whatever you want to the Hardware Clockwhile the system is running, and the next time Linux starts up, it will do so with the adjusted time from theHardware Clock. Note: currently this is not possible on most systems because hwclock --systohc is called atshutdown.The Linux kernel’s timezone is set by hwclock. But don’t be misled — almost nobody cares what timezone thekernel thinks it is in. Instead, programs that care about the timezone (perhaps because they want to display alocal time for you) almost always use a more traditional method of determining the timezone: They use the TZenvironment variable or the /etc/localtime file, as explained in the man page for tzset(3). However, someprograms and fringe parts of the Linux kernel such as filesystems use the kernel’s timezone value. An exampleis the vfat filesystem. If the kernel timezone value is wrong, the vfat filesystem will report and set thewrong timestamps on files. Another example is the kernel’s NTP ‘11 minute mode‘. If the kernel’s timezone valueand/or the persistent_clock_is_local variable are wrong, then the Hardware Clock will be set incorrectly by ‘11minute mode‘. See the discussion below, under Automatic Hardware Clock Synchronization by the Kernel.hwclock sets the kernel’s timezone to the value indicated by TZ or /etc/localtime with the --hctosys or --systzfunctions.The kernel’s timezone value actually consists of two parts: 1) a field tz_minuteswest indicating how manyminutes local time (not adjusted for DST) lags behind UTC, and 2) a field tz_dsttime indicating the type ofDaylight Savings Time (DST) convention that is in effect in the locality at the present time. This second fieldis not used under Linux and is always zero. See also settimeofday(2).Hardware Clock Access Methodshwclock uses many different ways to get and set Hardware Clock values. The most normal way is to do I/O to thertc device special file, which is presumed to be driven by the rtc device driver. Also, Linux systems using thertc framework with udev, are capable of supporting multiple Hardware Clocks. This may bring about the need tooverride the default rtc device by specifying one with the --rtc option.However, this method is not always available as older systems do not have an rtc driver. On these systems, themethod of accessing the Hardware Clock depends on the system hardware.On an ISA compatible system, hwclock can directly access the "CMOS memory" registers that constitute the clock,by doing I/O to Ports 0x70 and 0x71. It does this with actual I/O instructions and consequently can only do itif running with superuser effective userid. This method may be used by specifying the --directisa option.This is a really poor method of accessing the clock, for all the reasons that userspace programs are generallynot supposed to do direct I/O and disable interrupts. hwclock provides it for testing, troubleshooting, andbecause it may be the only method available on ISA systems which do not have a working rtc device driver.The Adjust FunctionThe Hardware Clock is usually not very accurate. However, much of its inaccuracy is completely predictable - itgains or loses the same amount of time every day. This is called systematic drift. hwclock‘s --adjust functionlets you apply systematic drift corrections to the Hardware Clock.It works like this: hwclock keeps a file, /etc/adjtime, that keeps some historical information. This is calledthe adjtime file.Suppose you start with no adjtime file. You issue a hwclock --set command to set the Hardware Clock to the truecurrent time. hwclock creates the adjtime file and records in it the current time as the last time the clockwas calibrated. Five days later, the clock has gained 10 seconds, so you issue a hwclock --set --update-driftcommand to set it back 10 seconds. hwclock updates the adjtime file to show the current time as the last timethe clock was calibrated, and records 2 seconds per day as the systematic drift rate. 24 hours go by, and thenyou issue a hwclock --adjust command. hwclock consults the adjtime file and sees that the clock gains 2 secondsper day when left alone and that it has been left alone for exactly one day. So it subtracts 2 seconds from theHardware Clock. It then records the current time as the last time the clock was adjusted. Another 24 hours goby and you issue another hwclock --adjust. hwclock does the same thing: subtracts 2 seconds and updates theadjtime file with the current time as the last time the clock was adjusted.When you use the --update-drift option with --set or --systohc, the systematic drift rate is (re)calculated bycomparing the fully drift corrected current Hardware Clock time with the new set time, from that it derives the24 hour drift rate based on the last calibrated timestamp from the adjtime file. This updated drift factor isthen saved in /etc/adjtime.A small amount of error creeps in when the Hardware Clock is set, so --adjust refrains from making anyadjustment that is less than 1 second. Later on, when you request an adjustment again, the accumulated driftwill be more than 1 second and --adjust will make the adjustment including any fractional amount.hwclock --hctosys also uses the adjtime file data to compensate the value read from the Hardware Clock beforeusing it to set the System Clock. It does not share the 1 second limitation of --adjust, and will correctsub-second drift values immediately. It does not change the Hardware Clock time nor the adjtime file. This mayeliminate the need to use --adjust, unless something else on the system needs the Hardware Clock to becompensated.The Adjtime FileWhile named for its historical purpose of controlling adjustments only, it actually contains other informationused by hwclock from one invocation to the next.The format of the adjtime file is, in ASCII:Line 1: Three numbers, separated by blanks: 1) the systematic drift rate in seconds per day, floating pointdecimal; 2) the resulting number of seconds since 1969 UTC of most recent adjustment or calibration, decimalinteger; 3) zero (for compatibility with clock(8)) as a floating point decimal.Line 2: One number: the resulting number of seconds since 1969 UTC of most recent calibration. Zero if therehas been no calibration yet or it is known that any previous calibration is moot (for example, because theHardware Clock has been found, since that calibration, not to contain a valid time). This is a decimal integer.Line 3: "UTC" or "LOCAL". Tells whether the Hardware Clock is set to Coordinated Universal Time or local time.You can always override this value with options on the hwclock command line.You can use an adjtime file that was previously used with the clock(8) program with hwclock.Automatic Hardware Clock Synchronization by the KernelYou should be aware of another way that the Hardware Clock is kept synchronized in some systems. The Linuxkernel has a mode wherein it copies the System Time to the Hardware Clock every 11 minutes. This mode is acompile time option, so not all kernels will have this capability. This is a good mode to use when you areusing something sophisticated like NTP to keep your System Clock synchronized. (NTP is a way to keep yourSystem Time synchronized either to a time server somewhere on the network or to a radio clock hooked up to yoursystem. See RFC 1305.)If the kernel is compiled with the ‘11 minute mode‘ option it will be active when the kernel’s clock disciplineis in a synchronized state. When in this state, bit 6 (the bit that is set in the mask 0x0040) of the kernel’stime_status variable is unset. This value is output as the ‘status‘ line of the adjtimex --print or ntptimecommands.It takes an outside influence, like the NTP daemon to put the kernel’s clock discipline into a synchronizedstate, and therefore turn on ‘11 minute mode‘. It can be turned off by running anything that sets the SystemClock the old fashioned way, including hwclock --hctosys. However, if the NTP daemon is still running, it willturn ‘11 minute mode‘ back on again the next time it synchronizes the System Clock.If your system runs with ‘11 minute mode‘ on, it may need to use either --hctosys or --systz in a startupscript, especially if the Hardware Clock is configured to use the local timescale. Unless the kernel isinformed of what timescale the Hardware Clock is using, it may clobber it with the wrong one. The kernel usesUTC by default.The first userspace command to set the System Clock informs the kernel what timescale the Hardware Clock isusing. This happens via the persistent_clock_is_local kernel variable. If --hctosys or --systz is the first, itwill set this variable according to the adjtime file or the appropriate command-line argument. Note that whenusing this capability and the Hardware Clock timescale configuration is changed, then a reboot is required tonotify the kernel.hwclock --adjust should not be used with NTP ‘11 minute mode‘.ISA Hardware Clock Century valueThere is some sort of standard that defines CMOS memory Byte 50 on an ISA machine as an indicator of whatcentury it is. hwclock does not use or set that byte because there are some machines that don’t define the bytethat way, and it really isn’t necessary anyway, since the year-of-century does a good job of implying whichcentury it is.If you have a bona fide use for a CMOS century byte, contact the hwclock maintainer; an option may beappropriate.Note that this section is only relevant when you are using the "direct ISA" method of accessing the HardwareClock. ACPI provides a standard way to access century values, when they are supported by the hardware.DATE-TIME CONFIGURATIONKeeping Time without External SynchronizationThis discussion is based on the following conditions:•Nothing is running that alters the date-time clocks, such as NTP daemon or a cron job."•The system timezone is configured for the correct local time. See below, under POSIX vs ‘RIGHT‘.•Early during startup the following are called, in this order: adjtimex --tick value --frequency valuehwclock --hctosys•During shutdown the following is called: hwclock --systohc•Systems without adjtimex may use ntptime.Whether maintaining precision time with NTP daemon or not, it makes sense to configure the system to keepreasonably good date-time on its own.The first step in making that happen is having a clear understanding of the big picture. There are twocompletely separate hardware devices running at their own speed and drifting away from the ‘correct‘ time attheir own rates. The methods and software for drift correction are different for each of them. However, mostsystems are configured to exchange values between these two clocks at startup and shutdown. Now the individualdevice’s time keeping errors are transferred back and forth between each other. Attempt to configure driftcorrection for only one of them, and the other’s drift will be overlaid upon it.This problem can be avoided when configuring drift correction for the System Clock by simply not shutting downthe machine. This, plus the fact that all of hwclock‘s precision (including calculating drift factors) dependsupon the System Clock’s rate being correct, means that configuration of the System Clock should be done first.The System Clock drift is corrected with the adjtimex(8) command’s --tick and --frequency options. These twowork together: tick is the coarse adjustment and frequency is the fine adjustment. (For systems that do nothave an adjtimex package, ntptime -f ppm may be used instead.)Some Linux distributions attempt to automatically calculate the System Clock drift with adjtimex‘s compareoperation. Trying to correct one drifting clock by using another drifting clock as a reference is akin to a dogtrying to catch its own tail. Success may happen eventually, but great effort and frustration will likelyprecede it. This automation may yield an improvement over no configuration, but expecting optimum results wouldbe in error. A better choice for manual configuration would be adjtimex‘s --log options.It may be more effective to simply track the System Clock drift with sntp, or date -Ins and a precisiontimepiece, and then calculate the correction manually.After setting the tick and frequency values, continue to test and refine the adjustments until the System Clockkeeps good time. See adjtimex(2) for more information and the example demonstrating manual drift calculations.Once the System Clock is ticking smoothly, move on to the Hardware Clock.As a rule, cold drift will work best for most use cases. This should be true even for 24/7 machines whosenormal downtime consists of a reboot. In that case the drift factor value makes little difference. But on therare occasion that the machine is shut down for an extended period, then cold drift should yield betterresults.Steps to calculate cold drift:1Ensure that NTP daemon will not be launched at startup.2The System Clock time must be correct at shutdown!3Shut down the system.4Let an extended period pass without changing the Hardware Clock.5Start the system.6Immediately use hwclock to set the correct time, adding the --update-drift option.Note: if step 6 uses --systohc, then the System Clock must be set correctly (step 6a) just before doing so.Having hwclock calculate the drift factor is a good starting point, but for optimal results it will likely needto be adjusted by directly editing the /etc/adjtime file. Continue to test and refine the drift factor untilthe Hardware Clock is corrected properly at startup. To check this, first make sure that the System Time iscorrect before shutdown and then use sntp, or date -Ins and a precision timepiece, immediately after startup.LOCAL vs UTCKeeping the Hardware Clock in a local timescale causes inconsistent daylight saving time results:•If Linux is running during a daylight saving time change, the time written to the Hardware Clock will beadjusted for the change.•If Linux is NOT running during a daylight saving time change, the time read from the Hardware Clock willNOT be adjusted for the change.The Hardware Clock on an ISA compatible system keeps only a date and time, it has no concept of timezone nordaylight saving. Therefore, when hwclock is told that it is in local time, it assumes it is in the ‘correct‘local time and makes no adjustments to the time read from it.Linux handles daylight saving time changes transparently only when the Hardware Clock is kept in the UTCtimescale. Doing so is made easy for system administrators as hwclock uses local time for its output and as theargument to the --date option.POSIX systems, like Linux, are designed to have the System Clock operate in the UTC timescale. The HardwareClock’s purpose is to initialize the System Clock, so also keeping it in UTC makes sense.Linux does, however, attempt to accommodate the Hardware Clock being in the local timescale. This is primarilyfor dual-booting with older versions of MS Windows. From Windows 7 on, the RealTimeIsUniversal registry key issupposed to be working properly so that its Hardware Clock can be kept in UTC.POSIX vs ‘RIGHT‘A discussion on date-time configuration would be incomplete without addressing timezones, this is mostly wellcovered by tzset(3). One area that seems to have no documentation is the ‘right‘ directory of the Time ZoneDatabase, sometimes called tz or zoneinfo.There are two separate databases in the zoneinfo system, posix and ‘right‘. ‘Right‘ (now named zoneinfo-leaps)includes leap seconds and posix does not. To use the ‘right‘ database the System Clock must be set to (UTC +leap seconds), which is equivalent to (TAI - 10). This allows calculating the exact number of seconds betweentwo dates that cross a leap second epoch. The System Clock is then converted to the correct civil time,including UTC, by using the ‘right‘ timezone files which subtract the leap seconds. Note: this configuration isconsidered experimental and is known to have issues.To configure a system to use a particular database all of the files located in its directory must be copied tothe root of /usr/share/zoneinfo. Files are never used directly from the posix or ‘right‘ subdirectories, e.g.,TZ=‘right/Europe/Dublin‘. This habit was becoming so common that the upstream zoneinfo project restructured thesystem’s file tree by moving the posix and ‘right‘ subdirectories out of the zoneinfo directory and intosibling directories:/usr/share/zoneinfo, /usr/share/zoneinfo-posix, /usr/share/zoneinfo-leapsUnfortunately, some Linux distributions are changing it back to the old tree structure in their packages. Sothe problem of system administrators reaching into the ‘right‘ subdirectory persists. This causes the systemtimezone to be configured to include leap seconds while the zoneinfo database is still configured to excludethem. Then when an application such as a World Clock needs the South_Pole timezone file; or an email MTA, orhwclock needs the UTC timezone file; they fetch it from the root of /usr/share/zoneinfo , because that is whatthey are supposed to do. Those files exclude leap seconds, but the System Clock now includes them, causing anincorrect time conversion.Attempting to mix and match files from these separate databases will not work, because they each require theSystem Clock to use a different timescale. The zoneinfo database must be configured to use either posix or‘right‘, as described above, or by assigning a database path to the TZDIR environment variable.EXIT STATUSOne of the following exit values will be returned:EXIT_SUCCESS (‘0‘ on POSIX systems)Successful program execution.EXIT_FAILURE (‘1‘ on POSIX systems)The operation failed or the command syntax was not valid.ENVIRONMENTTZIf this variable is set its value takes precedence over the system configured timezone.TZDIRIf this variable is set its value takes precedence over the system configured timezone database directorypath.FILES/etc/adjtimeThe configuration and state file for hwclock./etc/localtimeThe system timezone file./usr/share/zoneinfo/The system timezone database directory.Device files hwclock may try for Hardware Clock access: /dev/rtc0 /dev/rtc /dev/misc/rtc /dev/efirtc/dev/misc/efirtcSEE ALSOdate(1), adjtimex(8), gettimeofday(2), settimeofday(2), crontab(1p), tzset(3)AUTHORSWritten by Bryan Henderson , September 1996, based on work done on the clock(8)program by Charles Hedrick, Rob Hooft, and Harald Koenig. See the source code for complete history and credits.REPORTING BUGSFor bug reports, use the issue tracker at https://github.com/karelzak/util-linux/issues.AVAILABILITYThe hwclock command is part of the util-linux package which can be downloaded from Linux Kernel Archive.util-linux 2.37.2 2021-06-02HWCLOCK(8)
•••展开全文