LINUX(TEXT)如何修改系统时间
发布网友
发布时间:2022-04-21 10:04
我来回答
共5个回答
热心网友
时间:2022-05-26 01:48
DATE(1) User Commands DATE(1)
NAME
date - print or set the system date and time
SYNOPSIS
date [OPTION]... [+FORMAT]
date [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]
DESCRIPTION
Display the current time in the given FORMAT, or set the system date.
-d, --date=STRING
display time described by STRING, not ‘now’
-f, --file=DATEFILE
like --date once for each line of DATEFILE
-r, --reference=FILE
display the last modification time of FILE
-R, --rfc-2822
output date and time in RFC 2822 format
--rfc-3339=TIMESPEC
output date and time in RFC 3339 format. TIMESPEC=‘date’, ‘seconds’, or ‘ns’ for date and time to the indicated precision.
-s, --set=STRING
set time described by STRING
-u, --utc, --universal
print or set Coordinated Universal Time
--help display this help and exit
--version
output version information and exit
FORMAT controls the output. The only valid option for the second form specifies Coordinated Universal Time. Interpreted sequences
are:
设置时间使用
date --set=17:55:00
date --date=2009/04/28
热心网友
时间:2022-05-26 03:06
在linux中:
date [mmddhhmm[yyyy]]
改日期和时间,如将系统时间改为12月12日12时12分
打开终端输入:
date 12121212
然后在终端中输入date回车看看改了木
热心网友
时间:2022-05-26 04:41
date命令
日期设置为2014年6月18日
---- date -s 06/18/14
时间设置为14点20分50秒
---- date -s 14:20:50
将时间设置为2014年6月18日14点16分30秒(MMDDhhmmYYYY.ss)
----date 0618141614.30
热心网友
时间:2022-05-26 06:32
设置时间 date -s 17:01:01
设置日期 date -s 2009/04/28
热心网友
时间:2022-05-26 08:40
date -s "2017-08-04"