用以下命令进行修改:
touch -m -d "2000-01-01 10:10:10" ubuntugege.txt
嘿,文件修改时间变成了2000-01-01 10:10:10,这下我们也做了个小小的穿越呀!
当然,这个命令还有更多其它高级的用法,比如:你可以读取一个已存在的文件的修改时间再修改到指定的文件上,相当于复制“修改时间”到别的文件上,大家运行touch --help查看手册。
用法:touch [选项]... 文件...Update the access and modification times of each FILE to the current time.A FILE argument that does not exist is created empty, unless -c or -his supplied.A FILE argument string of - is handled specially and causes touch tochange the times of the file associated with standard output.Mandatory arguments to long options are mandatory for short options too. -a只更改访问时间 -c, --no-create不创建任何文件 -d, --date=字符串使用指定字符串表示时间而非当前时间 -f(忽略) -h, --no-dereference会影响符号链接本身,而非符号链接所指示的目的地(当系统支持更改符号链接的所有者时,此选项才有用) -m只更改修改时间 -r, --reference=FILE use this file's times instead of current time -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time --time=WORDchange the specified time: WORD is access, atime, or use: equivalent to -a WORD is modify or mtime: equivalent to -m --help显示此帮助信息并退出 --version显示版本信息并退出请注意,-d 和-t 选项可接受不同的时间/日期格式。
Centos系统,必须同时修改系统时间和硬件时间,才可以保证修改有效,单纯的使用date命令修改系统时间,是立即生效,重启后系统还原。具体 *** 作如下: 1.date {查看目前本地的时间} 2.hwclock --show {查看硬件的时间} 3.如果硬件时间和系统时间不同,那就对硬件的时间进行修改 4.hwclock --set --date ‘14-12-15 15:15:15’ {设置硬件时间为14年12月15日15点15分15秒} 5.hwclock --hctosys {设置系统时间和硬件时间同步} 6.clock -w {保存时钟} 修改时区: ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime欢迎分享,转载请注明来源:内存溢出
评论列表(0条)